diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml
index 2c50f280e7..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'
@@ -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=https://packages.infragistics.com/npm/js-licensed/'
+ 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'
diff --git a/browser/public/index.html b/browser/public/index.html
index 2b5e7d702e..e2c3eb2761 100644
--- a/browser/public/index.html
+++ b/browser/public/index.html
@@ -940,6 +940,13 @@
─Semi Horizontal
─Styling
+
+
─Base
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();
}
}
diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js
index 3bd9240dec..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.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.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.0.0" },
- { 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 238b84f80e..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.0.0",
- "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-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"
},
@@ -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",
@@ -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",
@@ -2922,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": {
@@ -3107,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"
}
},
@@ -3324,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"
@@ -3335,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",
@@ -4193,9 +4193,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",
@@ -4206,7 +4206,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"
@@ -4270,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": [
{
@@ -4289,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"
@@ -4358,14 +4358,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"
@@ -4406,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": [
{
@@ -5467,17 +5472,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": {
@@ -5885,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": {
@@ -5954,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",
@@ -6005,6 +6013,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",
@@ -6060,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"
@@ -6512,37 +6541,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",
@@ -6553,34 +6582,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"
@@ -6595,14 +6600,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",
@@ -6619,21 +6633,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",
@@ -7309,9 +7308,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": [
{
@@ -7694,16 +7693,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"
}
@@ -8353,12 +8356,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"
@@ -8767,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"
}
@@ -8780,24 +8783,28 @@
"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.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",
+ "@lit/context": "^1.1.0",
"lit": "^3.2.0"
+ },
+ "engines": {
+ "node": ">=18"
}
},
"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.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.2"
+ "igniteui-webcomponents-core": "5.1.0"
}
},
"node_modules/igniteui-webcomponents-charts/node_modules/tslib": {
@@ -8806,14 +8813,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.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"
},
"peerDependencies": {
- "lit-html": "^2.0.0"
+ "lit-html": "^3.2.0"
}
},
"node_modules/igniteui-webcomponents-core/node_modules/tslib": {
@@ -8822,14 +8829,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.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.2"
+ "igniteui-webcomponents-core": "5.1.0"
}
},
"node_modules/igniteui-webcomponents-datasources/node_modules/tslib": {
@@ -8838,16 +8845,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.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.2"
+ "igniteui-webcomponents-core": "5.1.0"
}
},
"node_modules/igniteui-webcomponents-excel/node_modules/tslib": {
@@ -8856,14 +8863,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.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.2"
+ "igniteui-webcomponents-core": "5.1.0"
}
},
"node_modules/igniteui-webcomponents-gauges/node_modules/tslib": {
@@ -8872,16 +8879,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.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.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.2"
+ "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": {
@@ -8890,14 +8897,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.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.2"
+ "igniteui-webcomponents-core": "5.1.0"
}
},
"node_modules/igniteui-webcomponents-inputs/node_modules/tslib": {
@@ -8906,15 +8913,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.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.2",
- "igniteui-webcomponents-inputs": "5.0.2"
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0"
}
},
"node_modules/igniteui-webcomponents-layouts/node_modules/tslib": {
@@ -8923,15 +8930,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.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.2",
- "igniteui-webcomponents-core": "5.0.2"
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0"
}
},
"node_modules/igniteui-webcomponents-maps/node_modules/tslib": {
@@ -8940,29 +8947,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.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.2",
- "igniteui-webcomponents-excel": "5.0.2"
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-excel": "5.1.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.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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-excel": "5.0.2",
- "igniteui-webcomponents-spreadsheet": "5.0.2"
+ "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": {
@@ -8975,42 +8982,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",
@@ -10543,10 +10514,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",
@@ -10865,9 +10839,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": {
@@ -11015,10 +10989,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"
}
@@ -11493,9 +11470,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": {
@@ -11517,9 +11494,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": {
@@ -11811,12 +11788,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"
@@ -12521,9 +12498,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",
@@ -12665,20 +12642,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",
@@ -12686,15 +12672,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"
@@ -12811,14 +12799,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"
@@ -14333,9 +14325,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": [
{
@@ -14352,8 +14344,8 @@
}
],
"dependencies": {
- "escalade": "^3.1.1",
- "picocolors": "^1.0.0"
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.0"
},
"bin": {
"update-browserslist-db": "cli.js"
@@ -14566,9 +14558,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",
@@ -14588,34 +14580,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": {
@@ -14771,9 +14762,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",
diff --git a/package.json b/package.json
index f8e4293c13..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.0.0",
- "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-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"
},
@@ -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",
diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json
index c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/annotations-all/package.json
+++ b/samples/charts/category-chart/annotations-all/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/annotations-callouts/package.json
+++ b/samples/charts/category-chart/annotations-callouts/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/annotations-crosshairs/package.json
+++ b/samples/charts/category-chart/annotations-crosshairs/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/annotations-custom/package.json
+++ b/samples/charts/category-chart/annotations-custom/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/annotations-final-value/package.json
+++ b/samples/charts/category-chart/annotations-final-value/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/annotations-highlighting/package.json
+++ b/samples/charts/category-chart/annotations-highlighting/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 282d90e379..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-gap/package.json
+++ b/samples/charts/category-chart/axis-gap/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-gridlines/package.json
+++ b/samples/charts/category-chart/axis-gridlines/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-inverted/package.json
+++ b/samples/charts/category-chart/axis-inverted/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-labels/package.json
+++ b/samples/charts/category-chart/axis-labels/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-locations/package.json
+++ b/samples/charts/category-chart/axis-locations/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-overlap/package.json
+++ b/samples/charts/category-chart/axis-overlap/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-range/package.json
+++ b/samples/charts/category-chart/axis-range/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/axis-tickmarks/package.json
+++ b/samples/charts/category-chart/axis-tickmarks/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/chart-highlight-filter/package.json
+++ b/samples/charts/category-chart/chart-highlight-filter/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 1d1902a00b..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/column-chart-with-tooltips/package.json
+++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/data-aggregations/package.json
+++ b/samples/charts/category-chart/data-aggregations/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/data-filter/package.json
+++ b/samples/charts/category-chart/data-filter/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/data-tooltip-positioning/package.json
+++ b/samples/charts/category-chart/data-tooltip-positioning/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 edaaf999a7..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 89a9ab750c..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 65f98b0da9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/highlighting-behavior/package.json
+++ b/samples/charts/category-chart/highlighting-behavior/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/highlighting-mode/package.json
+++ b/samples/charts/category-chart/highlighting-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 1d1902a00b..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 61d5d7665c..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 282d90e379..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/marker-options/package.json
+++ b/samples/charts/category-chart/marker-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 ef4b24da91..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/selection-multiple-modes/package.json
+++ b/samples/charts/category-chart/selection-multiple-modes/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 571e0b68ba..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 cc5b855f19..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 cc5b855f19..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 02d05b327b..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/category-chart/value-lines/package.json
+++ b/samples/charts/category-chart/value-lines/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 917f49944f..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 8d8d807b10..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/data-chart/axis-label-rotation/package.json
+++ b/samples/charts/data-chart/axis-label-rotation/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 8d8d807b10..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 4a00910a70..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 12fd75ae9e..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 aa2ed5186a..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json
+++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..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
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 c98829bb32..cfe663c26f 100644
--- a/samples/charts/data-chart/chart-highlight-filter/package.json
+++ b/samples/charts/data-chart/chart-highlight-filter/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "5.1.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 e2c0bbca98..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 14336e7343..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 0e625ff892..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 38e889b861..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 f2883fb376..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 14336e7343..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 7b589d12f9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 67f006614a..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.2",
+ "igniteui-webcomponents-charts": "5.1.0",
+ "igniteui-webcomponents-core": "5.1.0",
+ "igniteui-webcomponents-inputs": "5.1.0",
+ "igniteui-webcomponents-layouts": "5.1.0",
"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 7d8184d2bf..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 7d8184d2bf..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 7d8184d2bf..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 7d8184d2bf..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 7d8184d2bf..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 bd5623f4c9..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.2",
- "igniteui-webcomponents-core": "5.0.2",
+ "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/index.html b/samples/charts/data-chart/data-legend/index.html
index 543e366702..f140ddceb9 100644
--- a/samples/charts/data-chart/data-legend/index.html
+++ b/samples/charts/data-chart/data-legend/index.html
@@ -25,7 +25,9 @@
+ id="legend"
+ units-text="%"
+ included-columns="BirthRate, DeathRate">
@@ -33,14 +35,6 @@
-
-
+
+
) {
- 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/action-strip/src/index.ts b/samples/grids/grid/action-strip/src/index.ts
index 03b26f0f48..46b8ac990d 100644
--- a/samples/grids/grid/action-strip/src/index.ts
+++ b/samples/grids/grid/action-strip/src/index.ts
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
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 { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
import { ModuleManager } from 'igniteui-webcomponents-core';
@@ -56,12 +56,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/advanced-filtering-options/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/advanced-filtering-options/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-options/src/index.ts b/samples/grids/grid/advanced-filtering-options/src/index.ts
index 05c3c7ef00..eda73fd819 100644
--- a/samples/grids/grid/advanced-filtering-options/src/index.ts
+++ b/samples/grids/grid/advanced-filtering-options/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -27,12 +27,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/advanced-filtering-style/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/advanced-filtering-style/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/advanced-filtering-style/src/index.ts b/samples/grids/grid/advanced-filtering-style/src/index.ts
index 05c3c7ef00..eda73fd819 100644
--- a/samples/grids/grid/advanced-filtering-style/src/index.ts
+++ b/samples/grids/grid/advanced-filtering-style/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -27,12 +27,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/binding-composite-data/package.json
+++ b/samples/grids/grid/binding-composite-data/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-crud-data/src/NwindData.json b/samples/grids/grid/binding-crud-data/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/binding-crud-data/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/samples/grids/grid/binding-crud-data/src/index.ts b/samples/grids/grid/binding-crud-data/src/index.ts
index e501cae522..af9695c0ea 100644
--- a/samples/grids/grid/binding-crud-data/src/index.ts
+++ b/samples/grids/grid/binding-crud-data/src/index.ts
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
import { ModuleManager } from 'igniteui-webcomponents-core';
@@ -38,12 +38,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/binding-nested-data-1/package.json
+++ b/samples/grids/grid/binding-nested-data-1/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/cascading-combo/package.json
+++ b/samples/grids/grid/cascading-combo/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/cell-editing-sample/package.json
+++ b/samples/grids/grid/cell-editing-sample/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-editing-styling/src/NwindData.json b/samples/grids/grid/cell-editing-styling/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/cell-editing-styling/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-editing-styling/src/index.ts b/samples/grids/grid/cell-editing-styling/src/index.ts
index 5abc30281c..a8d57b898f 100644
--- a/samples/grids/grid/cell-editing-styling/src/index.ts
+++ b/samples/grids/grid/cell-editing-styling/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -22,12 +22,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/cell-selection-mode/package.json
+++ b/samples/grids/grid/cell-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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-mode/src/NwindData.json b/samples/grids/grid/cell-selection-mode/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/cell-selection-mode/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/cell-selection-mode/src/index.ts b/samples/grids/grid/cell-selection-mode/src/index.ts
index f2972e810c..3fedfbddb8 100644
--- a/samples/grids/grid/cell-selection-mode/src/index.ts
+++ b/samples/grids/grid/cell-selection-mode/src/index.ts
@@ -3,7 +3,7 @@ import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
import 'igniteui-webcomponents/themes/light/bootstrap.css';
@@ -38,12 +38,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 6c34b1d2b8..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.0.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": "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/src/index.ts b/samples/grids/grid/clipboard-operations/src/index.ts
index aa3cec1e6a..c7c9ec2ce8 100644
--- a/samples/grids/grid/clipboard-operations/src/index.ts
+++ b/samples/grids/grid/clipboard-operations/src/index.ts
@@ -10,6 +10,7 @@ defineAllComponents();
import "./index.css";
export class Sample {
+ private defaultSeparator: string;
private grid: IgcGridComponent
private _bind: () => void;
@@ -44,7 +45,10 @@ export class Sample {
var input = document.getElementById("input") as IgcInputComponent;
input.addEventListener("igcChange", (ev: CustomEvent) => {
- grid.clipboardOptions.separator = ev.detail;
+ if (!this.defaultSeparator) {
+ this.defaultSeparator = grid.clipboardOptions.separator;
+ }
+ grid.clipboardOptions.separator = ev.detail || this.defaultSeparator;
});
}
this._bind();
@@ -65,7 +69,6 @@ export class Sample {
column.formatter = (e: any) => { return "** " + e + " **" };
column.header = "🎉" + column.field;
}
-
}
new Sample();
diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/column-moving-options/package.json
+++ b/samples/grids/grid/column-moving-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/column-moving-styles/package.json
+++ b/samples/grids/grid/column-moving-styles/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/column-pinning-right-side/package.json
+++ b/samples/grids/grid/column-pinning-right-side/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/column-selection-mode/package.json
+++ b/samples/grids/grid/column-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/column-sorting-options/package.json
+++ b/samples/grids/grid/column-sorting-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/data-batch-editing-actions/package.json
+++ b/samples/grids/grid/data-batch-editing-actions/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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-batch-editing-actions/src/NwindData.json b/samples/grids/grid/data-batch-editing-actions/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/data-batch-editing-actions/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-batch-editing-actions/src/index.ts b/samples/grids/grid/data-batch-editing-actions/src/index.ts
index 6ea038b255..448de571f5 100644
--- a/samples/grids/grid/data-batch-editing-actions/src/index.ts
+++ b/samples/grids/grid/data-batch-editing-actions/src/index.ts
@@ -3,7 +3,7 @@ import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -79,12 +79,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json
index e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 6c34b1d2b8..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.0.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": "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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/data-performance-virtualization/package.json
+++ b/samples/grids/grid/data-performance-virtualization/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-formatter/src/NwindData.json b/samples/grids/grid/data-summary-formatter/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/data-summary-formatter/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-formatter/src/index.ts b/samples/grids/grid/data-summary-formatter/src/index.ts
index cbae6499bb..66bb1f942f 100644
--- a/samples/grids/grid/data-summary-formatter/src/index.ts
+++ b/samples/grids/grid/data-summary-formatter/src/index.ts
@@ -1,6 +1,6 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcSummaryResult, IgcSummaryOperand } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -26,12 +26,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/data-summary-options/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/data-summary-options/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-options/src/index.ts b/samples/grids/grid/data-summary-options/src/index.ts
index a376bad835..ed893717d6 100644
--- a/samples/grids/grid/data-summary-options/src/index.ts
+++ b/samples/grids/grid/data-summary-options/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcSummaryResult } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -37,12 +37,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/data-summary-template/package.json
+++ b/samples/grids/grid/data-summary-template/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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-summary-template/src/NwindData.json b/samples/grids/grid/data-summary-template/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/data-summary-template/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-summary-template/src/index.ts b/samples/grids/grid/data-summary-template/src/index.ts
index 2b4ef8215a..2348de082b 100644
--- a/samples/grids/grid/data-summary-template/src/index.ts
+++ b/samples/grids/grid/data-summary-template/src/index.ts
@@ -3,7 +3,7 @@ import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+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';
@@ -55,12 +55,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-validation-style/src/NwindData.json b/samples/grids/grid/data-validation-style/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/data-validation-style/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-validation-style/src/index.ts b/samples/grids/grid/data-validation-style/src/index.ts
index 0df3e91775..dd2ec7e818 100644
--- a/samples/grids/grid/data-validation-style/src/index.ts
+++ b/samples/grids/grid/data-validation-style/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -22,12 +22,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
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..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/data-validator-service-cross-field/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/data-validator-service-cross-field/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-cross-field/src/index.ts b/samples/grids/grid/data-validator-service-cross-field/src/index.ts
index 53f9cbea1f..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
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
import { ModuleManager } from 'igniteui-webcomponents-core';
@@ -48,12 +48,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/data-validator-service-extended/package.json
+++ b/samples/grids/grid/data-validator-service-extended/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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-extended/src/NwindData.json b/samples/grids/grid/data-validator-service-extended/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/data-validator-service-extended/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-extended/src/index.ts b/samples/grids/grid/data-validator-service-extended/src/index.ts
index dab97b432b..7ab2b5deb3 100644
--- a/samples/grids/grid/data-validator-service-extended/src/index.ts
+++ b/samples/grids/grid/data-validator-service-extended/src/index.ts
@@ -3,7 +3,7 @@ import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -69,12 +69,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/data-validator-service/package.json
+++ b/samples/grids/grid/data-validator-service/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-columns/src/NwindData.json b/samples/grids/grid/editing-columns/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/editing-columns/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-columns/src/index.ts b/samples/grids/grid/editing-columns/src/index.ts
index 5abc30281c..a8d57b898f 100644
--- a/samples/grids/grid/editing-columns/src/index.ts
+++ b/samples/grids/grid/editing-columns/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -22,12 +22,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/editing-events/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/editing-events/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-events/src/index.ts b/samples/grids/grid/editing-events/src/index.ts
index 8fee973a2b..f36742b6e9 100644
--- a/samples/grids/grid/editing-events/src/index.ts
+++ b/samples/grids/grid/editing-events/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcGridEditEventArgs } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -29,12 +29,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/editing-excel-style-custom/package.json b/samples/grids/grid/editing-excel-style-custom/package.json
index e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/editing-excel-style/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/editing-excel-style/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-excel-style/src/index.ts b/samples/grids/grid/editing-excel-style/src/index.ts
index 057561743f..81ffb84e23 100644
--- a/samples/grids/grid/editing-excel-style/src/index.ts
+++ b/samples/grids/grid/editing-excel-style/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcGridKeydownEventArgs } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -25,12 +25,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/editing-lifecycle/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/editing-lifecycle/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/editing-lifecycle/src/index.ts b/samples/grids/grid/editing-lifecycle/src/index.ts
index 6e300b06ab..e4e960d2cd 100644
--- a/samples/grids/grid/editing-lifecycle/src/index.ts
+++ b/samples/grids/grid/editing-lifecycle/src/index.ts
@@ -1,6 +1,6 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcRowSelectionEventArgs, IgcGridEditEventArgs, IgcGridEditDoneEventArgs } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -40,12 +40,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/excel-style-filtering-sample-1/package.json
+++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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-1/src/NwindData.json b/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-1/src/index.ts b/samples/grids/grid/excel-style-filtering-sample-1/src/index.ts
index df2bc730fc..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
@@ -3,7 +3,7 @@ import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -78,12 +78,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
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..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-2/src/NwindData.json b/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-2/src/index.ts b/samples/grids/grid/excel-style-filtering-sample-2/src/index.ts
index 58b4109bb1..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
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -65,12 +65,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
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..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-sample-3/src/index.ts b/samples/grids/grid/excel-style-filtering-sample-3/src/index.ts
index 53179637b3..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
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -66,12 +66,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/excel-style-filtering-style/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/excel-style-filtering-style/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/excel-style-filtering-style/src/index.ts b/samples/grids/grid/excel-style-filtering-style/src/index.ts
index 58b4109bb1..20317f7f95 100644
--- a/samples/grids/grid/excel-style-filtering-style/src/index.ts
+++ b/samples/grids/grid/excel-style-filtering-style/src/index.ts
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -65,12 +65,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/external-advanced-filtering/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/external-advanced-filtering/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/external-advanced-filtering/src/index.ts b/samples/grids/grid/external-advanced-filtering/src/index.ts
index e501cae522..af9695c0ea 100644
--- a/samples/grids/grid/external-advanced-filtering/src/index.ts
+++ b/samples/grids/grid/external-advanced-filtering/src/index.ts
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
import { ModuleManager } from 'igniteui-webcomponents-core';
@@ -38,12 +38,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/filtering-options/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/filtering-options/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-options/src/index.ts b/samples/grids/grid/filtering-options/src/index.ts
index e501cae522..af9695c0ea 100644
--- a/samples/grids/grid/filtering-options/src/index.ts
+++ b/samples/grids/grid/filtering-options/src/index.ts
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
import { ModuleManager } from 'igniteui-webcomponents-core';
@@ -38,12 +38,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/filtering-strategy/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/filtering-strategy/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-strategy/src/index.ts b/samples/grids/grid/filtering-strategy/src/index.ts
index 7b12c0a6f6..995733edef 100644
--- a/samples/grids/grid/filtering-strategy/src/index.ts
+++ b/samples/grids/grid/filtering-strategy/src/index.ts
@@ -1,6 +1,6 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -26,12 +26,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/filtering-style/package.json
+++ b/samples/grids/grid/filtering-style/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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/filtering-style/src/NwindData.json b/samples/grids/grid/filtering-style/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/filtering-style/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/filtering-style/src/index.ts b/samples/grids/grid/filtering-style/src/index.ts
index df2bc730fc..1660d0d7bf 100644
--- a/samples/grids/grid/filtering-style/src/index.ts
+++ b/samples/grids/grid/filtering-style/src/index.ts
@@ -3,7 +3,7 @@ import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -78,12 +78,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json
index 88ca5ded9c..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.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.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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/groupby-summary-options/package.json
+++ b/samples/grids/grid/groupby-summary-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/groupby-summary-styling/package.json
+++ b/samples/grids/grid/groupby-summary-styling/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 8e3ab9a468..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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",
"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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-custom-navigation/src/NwindData.json b/samples/grids/grid/keyboard-custom-navigation/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/keyboard-custom-navigation/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/keyboard-custom-navigation/src/index.ts b/samples/grids/grid/keyboard-custom-navigation/src/index.ts
index d5a0bf0512..44451a1ff9 100644
--- a/samples/grids/grid/keyboard-custom-navigation/src/index.ts
+++ b/samples/grids/grid/keyboard-custom-navigation/src/index.ts
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcGridKeydownEventArgs, GridKeydownTargetType } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -43,12 +43,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/layout-display-density/package.json
+++ b/samples/grids/grid/layout-display-density/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/multi-column-headers-overview/package.json
+++ b/samples/grids/grid/multi-column-headers-overview/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/overview/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/overview/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/overview/src/index.ts b/samples/grids/grid/overview/src/index.ts
index 7b12c0a6f6..995733edef 100644
--- a/samples/grids/grid/overview/src/index.ts
+++ b/samples/grids/grid/overview/src/index.ts
@@ -1,6 +1,6 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids';
import { html, nothing } from 'lit-html';
@@ -26,12 +26,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/paste/package.json
+++ b/samples/grids/grid/paste/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-data/src/NwindData.json b/samples/grids/grid/remote-paging-data/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/remote-paging-data/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/remote-paging-data/src/index.ts b/samples/grids/grid/remote-paging-data/src/index.ts
index 80d8d85122..a3c2ff02e3 100644
--- a/samples/grids/grid/remote-paging-data/src/index.ts
+++ b/samples/grids/grid/remote-paging-data/src/index.ts
@@ -2,7 +2,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts';
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
import { ModuleManager } from 'igniteui-webcomponents-core';
@@ -40,12 +40,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json
index e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-adding/src/NwindData.json b/samples/grids/grid/row-adding/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/row-adding/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-adding/src/index.ts b/samples/grids/grid/row-adding/src/index.ts
index 9d094e7f78..d0492118e8 100644
--- a/samples/grids/grid/row-adding/src/index.ts
+++ b/samples/grids/grid/row-adding/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -36,12 +36,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/row-classes/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/row-classes/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-classes/src/index.ts b/samples/grids/grid/row-classes/src/index.ts
index dbecc9cb90..79410f6806 100644
--- a/samples/grids/grid/row-classes/src/index.ts
+++ b/samples/grids/grid/row-classes/src/index.ts
@@ -1,6 +1,6 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcRowType } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -35,12 +35,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json
index e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-options/src/NwindData.json b/samples/grids/grid/row-editing-options/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/row-editing-options/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-options/src/index.ts b/samples/grids/grid/row-editing-options/src/index.ts
index a91257454a..0f3d026758 100644
--- a/samples/grids/grid/row-editing-options/src/index.ts
+++ b/samples/grids/grid/row-editing-options/src/index.ts
@@ -1,6 +1,6 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -35,12 +35,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/grid/row-editing-style/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/grid/row-editing-style/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-editing-style/src/index.ts b/samples/grids/grid/row-editing-style/src/index.ts
index a91257454a..0f3d026758 100644
--- a/samples/grids/grid/row-editing-style/src/index.ts
+++ b/samples/grids/grid/row-editing-style/src/index.ts
@@ -1,6 +1,6 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -35,12 +35,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/row-paging-basic/package.json
+++ b/samples/grids/grid/row-paging-basic/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/row-paging-options/package.json
+++ b/samples/grids/grid/row-paging-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/row-pinning-options/package.json
+++ b/samples/grids/grid/row-pinning-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/row-selection-mode/package.json
+++ b/samples/grids/grid/row-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/row-selection-template-numbers/package.json
+++ b/samples/grids/grid/row-selection-template-numbers/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/grid/row-styles/package.json
+++ b/samples/grids/grid/row-styles/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 6c34b1d2b8..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.0.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": "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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json
+++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-styling/src/NwindData.json b/samples/grids/hierarchical-grid/cell-editing-styling/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/hierarchical-grid/cell-editing-styling/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-editing-styling/src/index.ts b/samples/grids/hierarchical-grid/cell-editing-styling/src/index.ts
index 3c5e2b9238..429a437fbd 100644
--- a/samples/grids/hierarchical-grid/cell-editing-styling/src/index.ts
+++ b/samples/grids/hierarchical-grid/cell-editing-styling/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebHierarchicalGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -22,12 +22,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json
index 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json
+++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json
+++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/cell-selection-style/package.json
+++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/column-selection-mode/package.json
+++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/data-summary-template/package.json
+++ b/samples/grids/hierarchical-grid/data-summary-template/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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-columns/src/NwindData.json b/samples/grids/hierarchical-grid/editing-columns/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/hierarchical-grid/editing-columns/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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-columns/src/index.ts b/samples/grids/hierarchical-grid/editing-columns/src/index.ts
index 3c5e2b9238..429a437fbd 100644
--- a/samples/grids/hierarchical-grid/editing-columns/src/index.ts
+++ b/samples/grids/hierarchical-grid/editing-columns/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebHierarchicalGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -22,12 +22,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/src/NwindData.json b/samples/grids/hierarchical-grid/editing-events/src/NwindData.json
new file mode 100644
index 0000000000..c00b03ec8d
--- /dev/null
+++ b/samples/grids/hierarchical-grid/editing-events/src/NwindData.json
@@ -0,0 +1,458 @@
+[
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Fun-Tasty Co.",
+ "LastInventory": "2018-06-12"
+ },
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ },
+ {
+ "Shop": "Wall Market",
+ "LastInventory": "2018-12-06"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ },
+ {
+ "Shop": "Street Market",
+ "LastInventory": "2018-12-12"
+ },
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Farmer Market",
+ "LastInventory": "2018-04-04"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "24/7 Market",
+ "LastInventory": "2018-11-11"
+ },
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Local Market",
+ "LastInventory": "2018-07-03"
+ }
+ ]
+ },
+ {
+ "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": [
+ {
+ "Shop": "Super Market",
+ "LastInventory": "2018-09-09"
+ }
+ ]
+ }
+]
\ No newline at end of file
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/editing-events/src/index.ts b/samples/grids/hierarchical-grid/editing-events/src/index.ts
index da12abc0f3..bc8f4c7092 100644
--- a/samples/grids/hierarchical-grid/editing-events/src/index.ts
+++ b/samples/grids/hierarchical-grid/editing-events/src/index.ts
@@ -1,7 +1,7 @@
import 'igniteui-webcomponents-grids/grids/combined';
import { ComponentRenderer, WebHierarchicalGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core';
import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids';
-import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData';
+import NwindData from './NwindData.json';
import { IgcGridComponent, IgcGridEditEventArgs } from 'igniteui-webcomponents-grids/grids';
import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css";
@@ -25,12 +25,8 @@ export class Sample {
}
- private _nwindData: NwindData = null;
- public get nwindData(): NwindData {
- if (this._nwindData == null)
- {
- this._nwindData = new NwindData();
- }
+ private _nwindData: any[] = NwindData;
+ public get nwindData(): any[] {
return this._nwindData;
}
diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/layout-display-density/package.json
+++ b/samples/grids/hierarchical-grid/layout-display-density/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json
+++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json
+++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/row-pinning-options/package.json
+++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/row-selection-mode/package.json
+++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json
+++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 6c34b1d2b8..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.0.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": "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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 065075cea9..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.0.0",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 2def0e3748..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.0.0",
+ "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/index.html b/samples/grids/list/overview/index.html
index 3542a58af1..96f63c89d4 100644
--- a/samples/grids/list/overview/index.html
+++ b/samples/grids/list/overview/index.html
@@ -13,8 +13,8 @@
Small
- Medium
- Large
+ Medium
+ Large
diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json
index caf7dd4fed..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.0.0",
+ "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 73a81991a3..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.0.0",
+ "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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 9833a9bb90..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.0.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": "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 d9b98fc082..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/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: {
diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 d9b98fc082..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 6c34b1d2b8..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.0.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": "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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/cell-editing-sample/package.json
+++ b/samples/grids/tree-grid/cell-editing-sample/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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-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-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/cell-selection-mode/package.json
+++ b/samples/grids/tree-grid/cell-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 6c34b1d2b8..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.0.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": "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/clipboard-operations/src/index.ts b/samples/grids/tree-grid/clipboard-operations/src/index.ts
index f7bddcd52f..6e80c2f253 100644
--- a/samples/grids/tree-grid/clipboard-operations/src/index.ts
+++ b/samples/grids/tree-grid/clipboard-operations/src/index.ts
@@ -17,6 +17,7 @@ export class Sample {
private clipboardHeadersEditor: IgcPropertyEditorPropertyDescriptionComponent
private clipboardFormattersEditor: IgcPropertyEditorPropertyDescriptionComponent
private treeGrid: IgcTreeGridComponent
+ private defaultSeparator: string;
constructor() {
var clipboardEnabledEditor = this.clipboardEnabledEditor = document.getElementById('ClipboardEnabledEditor') as IgcPropertyEditorPropertyDescriptionComponent;
@@ -51,7 +52,10 @@ export class Sample {
var input = document.getElementById("input") as IgcInputComponent;
input.addEventListener("igcChange", (ev: CustomEvent) => {
- grid.clipboardOptions.separator = ev.detail;
+ if (!this.defaultSeparator) {
+ this.defaultSeparator = grid.clipboardOptions.separator;
+ }
+ grid.clipboardOptions.separator = ev.detail || this.defaultSeparator;
});
}
diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/column-selection-mode/package.json
+++ b/samples/grids/tree-grid/column-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/column-sorting-options/package.json
+++ b/samples/grids/tree-grid/column-sorting-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 6c34b1d2b8..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.0.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": "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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/data-summary-children/package.json
+++ b/samples/grids/tree-grid/data-summary-children/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/data-summary-template/package.json
+++ b/samples/grids/tree-grid/data-summary-template/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..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
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 88ca5ded9c..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.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.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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/layout-display-density/package.json
+++ b/samples/grids/tree-grid/layout-display-density/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/multi-column-headers-overview/package.json
+++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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/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-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json
index 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/row-paging-options/package.json
+++ b/samples/grids/tree-grid/row-paging-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/row-pinning-options/package.json
+++ b/samples/grids/tree-grid/row-pinning-options/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/row-selection-mode/package.json
+++ b/samples/grids/tree-grid/row-selection-mode/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 6c34b1d2b8..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.0.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": "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 6c34b1d2b8..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.0.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": "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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/toolbar-sample-1/package.json
+++ b/samples/grids/tree-grid/toolbar-sample-1/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/toolbar-sample-3/package.json
+++ b/samples/grids/tree-grid/toolbar-sample-3/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 e35e8a9af2..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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 @@
"style-loader": "^0.22.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.4",
- "webpack": "^5.74.0",
+ "webpack": "^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 5f9deabc52..dc50bbc8f5 100644
--- a/samples/grids/tree-grid/toolbar-style/package.json
+++ b/samples/grids/tree-grid/toolbar-style/package.json
@@ -23,11 +23,11 @@
},
"dependencies": {
"babel-runtime": "^6.26.0",
- "igniteui-webcomponents": "5.0.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": "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"
},
@@ -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 7527cf9aa1..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.2",
- "igniteui-webcomponents-grids": "5.0.2",
- "igniteui-webcomponents-inputs": "5.0.2",
- "igniteui-webcomponents-layouts": "5.0.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"
},
@@ -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 4c0db4c1f0..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.0.0",
+ "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 b777fef150..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.0.0",
+ "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 4cb7c1bbc1..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.0.0",
+ "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 5ddc3b2f0c..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.0.0",
+ "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 6dea48ae5d..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.0.0",
+ "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 f6fb9e31b0..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.0.0",
+ "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 b060fb467f..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.0.0",
+ "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 9b88cb1263..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.0.0",
+ "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 35405b401c..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.0.0",
+ "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 b1de656c1c..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.0.0",
+ "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 306c0dfe69..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.0.0",
+ "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 7971f98af7..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.0.0",
+ "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 51d2dec6c6..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.0.0",
+ "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 b4a64e4ca2..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.0.0",
+ "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 f6938a57c2..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.0.0",
+ "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 2dd38c69d8..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.0.0",
+ "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 3303df20e6..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.0.0",
+ "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 9167797c99..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.0.0",
+ "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 10e4ae091c..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 35191b9a46..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.0.0",
+ "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 f4269f5c38..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.0.0",
+ "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 2862116ccd..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.0.0",
+ "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 c35a4cfe8e..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 5c76eec6bb..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.0.0",
+ "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 0c9cd2820d..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.0.0",
+ "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 e78260f6fc..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.0.0",
+ "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 ef3f17b709..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.0.0",
+ "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 0a3cb77b59..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.0.0",
+ "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 7998a15ee4..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.0.0",
+ "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 d976a76275..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.0.0",
+ "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 d21f420acc..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.0.0",
+ "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 468b715cf5..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.0.0",
+ "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 51c68ac18d..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.0.0",
+ "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 e9fa0c39d2..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.0.0",
+ "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 4608411c5a..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.0.0",
+ "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 f0c3b3fc59..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.0.0",
+ "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 9178a9397b..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.0.0",
+ "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/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..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.0.0",
+ "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 25c7f0bea0..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.0.0",
+ "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 16a3ff1923..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.0.0",
+ "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 3e201fdd73..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.0.0",
+ "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 0e6feef8e8..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.0.0",
+ "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 bcd75272c7..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.0.0",
+ "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 f217cf1920..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.0.0",
+ "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 7971f98af7..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.0.0",
+ "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 7971f98af7..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.0.0",
+ "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 7971f98af7..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.0.0",
+ "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 bec71e0512..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.0.0",
+ "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 dda7535a77..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.0.0",
+ "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 3a8842227a..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.0.0",
+ "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 4ddf07bb44..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.0.0",
+ "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 caeea56ebd..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.0.0",
+ "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 5c76eec6bb..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.0.0",
+ "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 f1e0071d07..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.0.0",
+ "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 c8398a9ebd..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.0.0",
+ "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 9c153934fc..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.0.0",
+ "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 5c25e2b166..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.0.0",
+ "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 0db555fa7a..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.0.0",
+ "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 790804b01b..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.0.0",
+ "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 c808170d54..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.0.0",
+ "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 8db4043b4b..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.0.0",
+ "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 f1dba73686..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.0.0",
+ "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 d15497bc5c..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.0.0",
+ "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 2465b1e2ec..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.0.0",
+ "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 2f06e76ee5..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.0.0",
+ "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 80e2812ae9..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.0.0",
+ "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 5ddc3b2f0c..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.0.0",
+ "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 a92c142d36..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.0.0",
+ "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 dfc4512d50..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.0.0",
+ "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 cac304b96d..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.0.0",
+ "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 5ddc3b2f0c..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.0.0",
+ "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 3a4ebd36dc..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.0.0",
+ "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 db75e1b472..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.0.0",
+ "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 d56146a911..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.0.0",
+ "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 a8fe3758de..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.0.0",
+ "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 0da14a7747..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.0.0",
+ "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 f9a7372a83..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.0.0",
+ "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 1b11e6785e..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.0.0",
+ "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 3a3c6065ad..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.0.0",
+ "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 1d8077650a..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.0.0",
+ "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 ff5733185c..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.0.0",
+ "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 d2f1e79f21..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.0.0",
+ "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 7a1b723c11..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.0.0",
+ "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/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/package.json b/samples/inputs/slider/styling/package.json
index c37912f8e8..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.0.0",
+ "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/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() {
diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json
index 78f739b051..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.0.0",
+ "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 d5cea5db38..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.0.0",
+ "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 93dc8d00a7..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.0.0",
+ "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 123665940e..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.0.0",
+ "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 8f45704b77..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.0.0",
+ "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 b9ddf0f663..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.0.0",
+ "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 78574b5512..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.0.0",
+ "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 a7b6d21b99..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.0.0",
+ "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 d198ed3777..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.0.0",
+ "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 80924183fa..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.0.0",
+ "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 c8f06fd0ef..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.0.0",
+ "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 4bc51a209f..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.0.0",
+ "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 cd20a957e8..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.0.0",
+ "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 9438518b78..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.0.0",
+ "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 9438518b78..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.0.0",
+ "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 9438518b78..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.0.0",
+ "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 ee715a82b1..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.0.0",
+ "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 6405b64bd3..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.0.0",
+ "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 0f146effc8..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.0.0",
+ "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 7f69e9b5bf..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.0.0",
+ "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/index.html b/samples/layouts/avatar/size/index.html
index ed4ee92a58..0c84cd79fd 100644
--- a/samples/layouts/avatar/size/index.html
+++ b/samples/layouts/avatar/size/index.html
@@ -15,9 +15,9 @@
diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json
index cdb11aaaea..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.0.0",
+ "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/src/AvatarSize.css b/samples/layouts/avatar/size/src/AvatarSize.css
index 8cfd68efd8..9a3299543b 100644
--- a/samples/layouts/avatar/size/src/AvatarSize.css
+++ b/samples/layouts/avatar/size/src/AvatarSize.css
@@ -1,3 +1,16 @@
-igc-avatar {
+.size-small {
+ --ig-size: var(--ig-size-small);
+}
+
+.size-medium {
+ --ig-size: var(--ig-size-medium);
+}
+
+.size-large {
--ig-size: var(--ig-size-large);
+}
+
+.sample {
+ flex-direction: row;
+ gap: 10px;
}
\ No newline at end of file
diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json
index 041988facf..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.0.0",
+ "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 fc1bbef83a..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.0.0",
+ "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 765144318a..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.0.0",
+ "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 a1749e3905..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.0.0",
+ "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 56d31f656c..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.0.0",
+ "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/.prettierrc b/samples/layouts/carousel/animations/.prettierrc
new file mode 100644
index 0000000000..15a7c7c6cf
--- /dev/null
+++ b/samples/layouts/carousel/animations/.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/carousel/animations/ReadMe.md b/samples/layouts/carousel/animations/ReadMe.md
new file mode 100644
index 0000000000..13b2b967d3
--- /dev/null
+++ b/samples/layouts/carousel/animations/ReadMe.md
@@ -0,0 +1,56 @@
+
+
+
+This folder contains implementation of Web Components application with example of Animations feature using [Carousel](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Branches
+
+> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/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/carousel/animations
+```
+
+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/carousel/animations/index.html b/samples/layouts/carousel/animations/index.html
new file mode 100644
index 0000000000..9925eef851
--- /dev/null
+++ b/samples/layouts/carousel/animations/index.html
@@ -0,0 +1,98 @@
+
+
+
+ Carousel Animations
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Animation type
+
+ Slide
+ Fade
+ None
+
+
+
+ Vertical alignment
+
+
+
+
+
+
+
+ Ignite UI for Angular
+
+
+ 30+ Material-based Angular components to code speedy web apps faster.
+
+
+
+
+
+
+ Visit Page
+
+
+
+
+
+
+
+
+
+ Ignite UI for Javascript
+
+
+ A complete JavaScript UI library empowering you to build data-rich responsive web apps.
+
+
+
+
+
+
+ Visit Page
+
+
+
+
+
+
+
+
+
+ Ultimate UI for ASP.NET
+
+
+ Build full-featured business apps with the most versatile set of ASP.NET AJAX UI controls.
+
+
+
+
+
+
+ Visit Page
+
+
+
+
+
+
+
+
+
+ <% if (false) { %><% } %>
+
+
+
diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json
new file mode 100644
index 0000000000..08f6e8343b
--- /dev/null
+++ b/samples/layouts/carousel/animations/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "wc-carousel-animations",
+ "version": "1.0.0",
+ "description": "This project provides example of carousel animations 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.1.2",
+ "lit": "^3.2.0",
+ "lit-html": "^3.2.0",
+ "tslib": "^2.6.3"
+ },
+ "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/carousel/animations/sandbox.config.json b/samples/layouts/carousel/animations/sandbox.config.json
new file mode 100644
index 0000000000..5c5b54fe21
--- /dev/null
+++ b/samples/layouts/carousel/animations/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/carousel/animations/src/index.css b/samples/layouts/carousel/animations/src/index.css
new file mode 100644
index 0000000000..2d82443ecf
--- /dev/null
+++ b/samples/layouts/carousel/animations/src/index.css
@@ -0,0 +1,49 @@
+/* shared styles are loaded from: */
+/* https://static.infragistics.com/xplatform/css/samples */
+
+.carousel-wrapper {
+ height: 600px;
+ width: 90%;
+ margin: 20px auto;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+}
+
+.action-wrapper {
+ height: 40px;
+ width: 500px;
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 10px;
+}
+
+.action {
+ display: flex;
+ align-items: center;
+}
+
+.slide-wrapper {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 10px;
+}
+
+igc-carousel {
+ border: 0.5px solid #dde0e4;
+}
+
+igc-select {
+ width: 150px;
+ margin-left: 10px;
+ --ig-size: var(--ig-size-small);
+}
+
+igc-card {
+ border: none;
+}
+
+igc-card-header {
+ padding: 8px 16px;
+}
\ No newline at end of file
diff --git a/samples/layouts/carousel/animations/src/index.ts b/samples/layouts/carousel/animations/src/index.ts
new file mode 100644
index 0000000000..2b68f19863
--- /dev/null
+++ b/samples/layouts/carousel/animations/src/index.ts
@@ -0,0 +1,28 @@
+import { defineComponents, IgcButtonComponent, IgcCardComponent, IgcCarouselComponent, IgcSelectComponent, IgcSwitchComponent } from "igniteui-webcomponents";
+import "igniteui-webcomponents/themes/light/bootstrap.css";
+import "./index.css";
+
+defineComponents(IgcCarouselComponent, IgcSelectComponent, IgcCardComponent, IgcButtonComponent, IgcSwitchComponent);
+
+export class CarouselAnimations {
+ private carousel: IgcCarouselComponent;
+ private select: IgcSelectComponent;
+ private switch: IgcSwitchComponent;
+
+ constructor() {
+ this.carousel = document.querySelector('igc-carousel') as IgcCarouselComponent;
+ this.select = document.querySelector('igc-select') as IgcSelectComponent;
+ this.switch = document.querySelector('igc-switch') as IgcSwitchComponent;
+
+ this.select.addEventListener("igcChange", (e) => {
+ const animation = e.detail.value as 'slide' | 'fade' | 'none';
+ this.carousel.animationType = animation;
+ });
+
+ this.switch.addEventListener("igcChange", (e) => {
+ this.carousel.vertical = e.detail.checked;
+ });
+ }
+}
+
+new CarouselAnimations();
diff --git a/samples/layouts/carousel/animations/tsconfig.json b/samples/layouts/carousel/animations/tsconfig.json
new file mode 100644
index 0000000000..de23257dd8
--- /dev/null
+++ b/samples/layouts/carousel/animations/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/carousel/animations/webpack.config.js b/samples/layouts/carousel/animations/webpack.config.js
new file mode 100644
index 0000000000..9d11a6155c
--- /dev/null
+++ b/samples/layouts/carousel/animations/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/carousel/components/.prettierrc b/samples/layouts/carousel/components/.prettierrc
new file mode 100644
index 0000000000..15a7c7c6cf
--- /dev/null
+++ b/samples/layouts/carousel/components/.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/carousel/components/ReadMe.md b/samples/layouts/carousel/components/ReadMe.md
new file mode 100644
index 0000000000..a7e94add48
--- /dev/null
+++ b/samples/layouts/carousel/components/ReadMe.md
@@ -0,0 +1,56 @@
+
+
+
+This folder contains implementation of Web Components application with example of Components feature using [Carousel](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Branches
+
+> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/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/carousel/components
+```
+
+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/carousel/components/index.html b/samples/layouts/carousel/components/index.html
new file mode 100644
index 0000000000..1ede31d776
--- /dev/null
+++ b/samples/layouts/carousel/components/index.html
@@ -0,0 +1,50 @@
+
+
+
+ Carousel With Components
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+

+
+
+
+
+
+
+
+ <% if (false) { %><% } %>
+
+
+
diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json
new file mode 100644
index 0000000000..fe54d12881
--- /dev/null
+++ b/samples/layouts/carousel/components/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "wc-carousel-with-components",
+ "version": "1.0.0",
+ "description": "This project provides example of carousel with components 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.1.2",
+ "lit": "^3.2.0",
+ "lit-html": "^3.2.0",
+ "tslib": "^2.6.3"
+ },
+ "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/carousel/components/sandbox.config.json b/samples/layouts/carousel/components/sandbox.config.json
new file mode 100644
index 0000000000..5c5b54fe21
--- /dev/null
+++ b/samples/layouts/carousel/components/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/carousel/components/src/index.css b/samples/layouts/carousel/components/src/index.css
new file mode 100644
index 0000000000..b588a05ace
--- /dev/null
+++ b/samples/layouts/carousel/components/src/index.css
@@ -0,0 +1,28 @@
+/* shared styles are loaded from: */
+/* https://static.infragistics.com/xplatform/css/samples */
+
+.carousel-container {
+ padding: 16px;
+}
+
+igc-carousel {
+ margin-inline: auto;
+ max-width: 75%;
+ height: 500px;
+}
+
+igc-carousel-slide {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+igc-carousel-slide div {
+ text-align: center;
+ max-width: 40%;
+ margin-inline: auto;
+}
+
+igc-carousel-slide div * {
+ margin-block: 8px;
+}
diff --git a/samples/layouts/carousel/components/src/index.ts b/samples/layouts/carousel/components/src/index.ts
new file mode 100644
index 0000000000..6a428fc31c
--- /dev/null
+++ b/samples/layouts/carousel/components/src/index.ts
@@ -0,0 +1,33 @@
+import { defineComponents, IgcButtonComponent, IgcCarouselComponent, IgcIconComponent, IgcInputComponent, registerIconFromText } from "igniteui-webcomponents";
+import "igniteui-webcomponents/themes/light/bootstrap.css";
+import "./index.css";
+
+defineComponents(IgcCarouselComponent, IgcInputComponent, IgcButtonComponent, IgcIconComponent);
+
+const icons = [
+ {
+ name: "person",
+ iconText:
+ ''
+ },
+ {
+ name: "password",
+ iconText:
+ ''
+ },
+ {
+ name: "search",
+ iconText:
+ ''
+ }
+];
+
+export class CarouselComponents {
+ constructor() {
+ icons.forEach((icon) => {
+ registerIconFromText(icon.name, icon.iconText);
+ });
+ }
+}
+
+new CarouselComponents();
diff --git a/samples/layouts/carousel/components/tsconfig.json b/samples/layouts/carousel/components/tsconfig.json
new file mode 100644
index 0000000000..de23257dd8
--- /dev/null
+++ b/samples/layouts/carousel/components/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/carousel/components/webpack.config.js b/samples/layouts/carousel/components/webpack.config.js
new file mode 100644
index 0000000000..9d11a6155c
--- /dev/null
+++ b/samples/layouts/carousel/components/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/carousel/overview/.prettierrc b/samples/layouts/carousel/overview/.prettierrc
new file mode 100644
index 0000000000..15a7c7c6cf
--- /dev/null
+++ b/samples/layouts/carousel/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/carousel/overview/ReadMe.md b/samples/layouts/carousel/overview/ReadMe.md
new file mode 100644
index 0000000000..d2946bce99
--- /dev/null
+++ b/samples/layouts/carousel/overview/ReadMe.md
@@ -0,0 +1,56 @@
+
+
+
+This folder contains implementation of Web Components application with example of Overview feature using [Carousel](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Branches
+
+> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/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/carousel/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/carousel/overview/index.html b/samples/layouts/carousel/overview/index.html
new file mode 100644
index 0000000000..9a03430ad6
--- /dev/null
+++ b/samples/layouts/carousel/overview/index.html
@@ -0,0 +1,40 @@
+
+
+
+ Carousel Overview
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+

+
+
+
+
+

+
+
+
+
+
+
+ <% if (false) { %><% } %>
+
+
+
diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json
new file mode 100644
index 0000000000..52013c9970
--- /dev/null
+++ b/samples/layouts/carousel/overview/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "wc-carousel-overview",
+ "version": "1.0.0",
+ "description": "This project provides example of carousel overview 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.1.2",
+ "lit": "^3.2.0",
+ "lit-html": "^3.2.0",
+ "tslib": "^2.6.3"
+ },
+ "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/carousel/overview/sandbox.config.json b/samples/layouts/carousel/overview/sandbox.config.json
new file mode 100644
index 0000000000..5c5b54fe21
--- /dev/null
+++ b/samples/layouts/carousel/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/carousel/overview/src/index.css b/samples/layouts/carousel/overview/src/index.css
new file mode 100644
index 0000000000..af4562e186
--- /dev/null
+++ b/samples/layouts/carousel/overview/src/index.css
@@ -0,0 +1,31 @@
+/* shared styles are loaded from: */
+/* https://static.infragistics.com/xplatform/css/samples */
+
+.carousel-container {
+ padding: 16px;
+}
+
+.image-container {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+img {
+ object-fit: fill;
+ max-width: 90%;
+}
+
+igc-carousel {
+ margin-inline: auto;
+ max-width: 75%;
+ height: 450px;
+}
+
+igc-carousel-slide::part(base) {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ max-width: 75%;
+ margin-inline: auto;
+}
diff --git a/samples/layouts/carousel/overview/src/index.ts b/samples/layouts/carousel/overview/src/index.ts
new file mode 100644
index 0000000000..cd00120f87
--- /dev/null
+++ b/samples/layouts/carousel/overview/src/index.ts
@@ -0,0 +1,11 @@
+import { defineComponents, IgcCarouselComponent } from "igniteui-webcomponents";
+import "igniteui-webcomponents/themes/light/bootstrap.css";
+import "./index.css";
+
+defineComponents(IgcCarouselComponent);
+
+export class CarouselOverview {
+ constructor() {}
+}
+
+new CarouselOverview();
diff --git a/samples/layouts/carousel/overview/tsconfig.json b/samples/layouts/carousel/overview/tsconfig.json
new file mode 100644
index 0000000000..de23257dd8
--- /dev/null
+++ b/samples/layouts/carousel/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/carousel/overview/webpack.config.js b/samples/layouts/carousel/overview/webpack.config.js
new file mode 100644
index 0000000000..9d11a6155c
--- /dev/null
+++ b/samples/layouts/carousel/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/carousel/thumbnail/.prettierrc b/samples/layouts/carousel/thumbnail/.prettierrc
new file mode 100644
index 0000000000..15a7c7c6cf
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/.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/carousel/thumbnail/ReadMe.md b/samples/layouts/carousel/thumbnail/ReadMe.md
new file mode 100644
index 0000000000..bb5b663ecb
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/ReadMe.md
@@ -0,0 +1,56 @@
+
+
+
+This folder contains implementation of Web Components application with example of Thumbnail feature using [Carousel](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Branches
+
+> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/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/carousel/thumbnail
+```
+
+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/carousel/thumbnail/index.html b/samples/layouts/carousel/thumbnail/index.html
new file mode 100644
index 0000000000..834f7b619f
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/index.html
@@ -0,0 +1,142 @@
+
+
+
+ Carousel Thumbnail
+
+
+
+
+
+
+
+
+
+
+
+
+ <% if (false) { %><% } %>
+
+
+
diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json
new file mode 100644
index 0000000000..038fbda747
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "wc-carousel-thumbnail",
+ "version": "1.0.0",
+ "description": "This project provides example of carousel advanced example 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.1.2",
+ "lit": "^3.2.0",
+ "lit-html": "^3.2.0",
+ "tslib": "^2.6.3"
+ },
+ "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/carousel/thumbnail/sandbox.config.json b/samples/layouts/carousel/thumbnail/sandbox.config.json
new file mode 100644
index 0000000000..5c5b54fe21
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/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/carousel/thumbnail/src/index.css b/samples/layouts/carousel/thumbnail/src/index.css
new file mode 100644
index 0000000000..8d5a7b6cbc
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/src/index.css
@@ -0,0 +1,16 @@
+/* shared styles are loaded from: */
+/* https://static.infragistics.com/xplatform/css/samples */
+
+igc-carousel {
+ margin-inline: auto;
+ max-width: 75%;
+}
+
+igc-carousel::part(indicators) {
+ border-radius: 2px;
+}
+
+.blurred {
+ filter: blur(2px);
+ opacity: 0.5;
+}
diff --git a/samples/layouts/carousel/thumbnail/src/index.ts b/samples/layouts/carousel/thumbnail/src/index.ts
new file mode 100644
index 0000000000..7eec185528
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/src/index.ts
@@ -0,0 +1,11 @@
+import { defineComponents, IgcCarouselComponent } from "igniteui-webcomponents";
+import "igniteui-webcomponents/themes/light/bootstrap.css";
+import "./index.css";
+
+defineComponents(IgcCarouselComponent);
+
+export class CarouselThumbnail {
+ constructor() {}
+}
+
+new CarouselThumbnail();
diff --git a/samples/layouts/carousel/thumbnail/tsconfig.json b/samples/layouts/carousel/thumbnail/tsconfig.json
new file mode 100644
index 0000000000..de23257dd8
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/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/carousel/thumbnail/webpack.config.js b/samples/layouts/carousel/thumbnail/webpack.config.js
new file mode 100644
index 0000000000..9d11a6155c
--- /dev/null
+++ b/samples/layouts/carousel/thumbnail/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/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json
index f9a7372a83..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.0.0",
+ "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 1b11e6785e..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.0.0",
+ "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 f9a7372a83..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.0.0",
+ "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 f9a7372a83..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.0.0",
+ "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 1b11e6785e..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.0.0",
+ "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 79769cf173..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.2",
+ "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 207ba326e4..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.2",
+ "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 beb05593b1..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.2",
+ "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 30c922cf40..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.0.0",
- "igniteui-webcomponents-core": "5.0.2",
+ "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 6aed074b36..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-gauges": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 28977e9428..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.0.0",
+ "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 c587aab107..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.0.0",
+ "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 8b91d59a03..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.0.0",
+ "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 9438518b78..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.0.0",
+ "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 9d36ea65b5..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.0.0",
+ "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 9d36ea65b5..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.0.0",
+ "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 a67a1a3a8a..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.0.0",
+ "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 a648838a88..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.0.0",
+ "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 a0afb7456d..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.0.0",
+ "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 a6e39ec9d1..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.0.0",
+ "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 527b02daf2..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.0.0",
+ "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 734032b59b..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.0.0",
+ "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 120f4c8348..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.0.0",
+ "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 bd05d89276..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.0.0",
+ "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 cd3663153d..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.0.0",
+ "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 465568b69b..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 22f1538309..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 939e0bf42d..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 20d4e4e526..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 e1b374c1a7..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 5585489a22..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 352f865c30..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 947b057c40..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 be0ff82941..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 214d8007c3..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 8514fe1673..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 fb12e43996..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 c8840f24e8..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 6bfae4d78f..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 305224fec7..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 c1293df4e2..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 152f937fca..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 3d41ffed13..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 f663e2a277..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 d4ed1ba543..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 da59ac85ac..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 70b6f6ffd6..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 f5f92a1dcf..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 d7c570bfb1..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 12c19b9253..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 e62c5f4c2f..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 e9e36aa46a..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 880a8a7e40..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.2",
- "igniteui-webcomponents-core": "5.0.2",
- "igniteui-webcomponents-maps": "5.0.2",
+ "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 74ab8c8a49..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.0.0",
+ "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 6817eccda6..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.0.0",
+ "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 09ddeba761..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.0.0",
+ "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 8f1a8ff6c5..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.0.0",
+ "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 8ccc914a2a..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.0.0",
+ "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 24f2c3dfa6..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.0.0",
+ "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 6643f343f2..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.0.0",
+ "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 95d2d7a2db..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.0.0",
+ "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 de0e77980c..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.0.0",
+ "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 ef97a4852a..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.0.0",
+ "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 5f16be04fd..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.0.0",
+ "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 51d9e2ccb3..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.0.0",
+ "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 04ea6be75b..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.0.0",
+ "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 183eaa1f08..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.0.0",
+ "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 bd1265fb62..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.0.0",
+ "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 bd1265fb62..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.0.0",
+ "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 bd1265fb62..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.0.0",
+ "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 bd1265fb62..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 5fd1817d03..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.0.0",
+ "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 fd152c8fbd..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.0.0",
+ "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 7ba652bae0..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.0.0",
+ "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 3c9f697e53..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.0.0",
+ "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 3b84a1eced..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.0.0",
+ "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 582856d6dd..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.0.0",
+ "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 16e8b0ae65..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.0.0",
+ "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 bed47bd8c5..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.0.0",
+ "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 bd1367b236..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.0.0",
+ "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 5c9db7fb7f..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.0.0",
+ "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 171b614d9b..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.0.0",
+ "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 eaed7c1f7d..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.0.0",
+ "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 406c81213e..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.0.0",
+ "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 250e0b771d..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.0.0",
+ "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 ce7fa20947..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.0.0",
+ "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 e86c42ef6f..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.0.0",
+ "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 e9f8d21eb6..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.0.0",
+ "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",