Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,121 changes: 229 additions & 892 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"@igniteui/material-icons-extended": "^3.0.0",
"element-internals-polyfill": "^1.3.10",
"functions-have-names": "^1.2.3",
"igniteui-react": "19.0.1",
"igniteui-react": "19.0.2",
"igniteui-react-charts": "19.0.0-alpha.0",
"igniteui-react-core": "19.0.0-alpha.0",
"igniteui-react-grids": "19.0.1",
"igniteui-react-grids": "19.0.2",
"igniteui-react-maps": "19.0.0-alpha.0",
"lit": "^3.3.0",
"react": "^19.0.0",
Expand Down
1,566 changes: 1,236 additions & 330 deletions projects/erp-hierarchical-grid/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions projects/erp-hierarchical-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"@floating-ui/react": "^0.27.7",
"element-internals-polyfill": "^3.0.0",
"functions-have-names": "^1.2.3",
"igniteui-react": "19.0.1",
"igniteui-react": "19.0.2",
"igniteui-react-charts": "19.0.0-alpha.0",
"igniteui-react-core": "19.0.0-alpha.0",
"igniteui-react-grids": "19.0.1",
"igniteui-react-grids": "19.0.2",
"react": "^19.0.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^19.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,8 @@ const ErpHGrid = () => {

const countryTemplate = (ctx: IgrCellTemplateContext) => {
const cellValue: string = ctx.cell.value;
const flagPath: string = `${
import.meta.env.BASE_URL
}country-flags/${cellValue}.svg`;
const flagPath: string = `${import.meta.env.BASE_URL
}country-flags/${cellValue}.svg`;

return (
<div className="country-cell">
Expand Down Expand Up @@ -355,12 +354,6 @@ const ErpHGrid = () => {
rowSelection={selectionMode}
sortingExpressions={childGridSortingExpression}
>
<IgrGridToolbar>
<IgrGridToolbarTitle>
Sales data for the last month
</IgrGridToolbarTitle>
</IgrGridToolbar>

<IgrColumn
field="orderId"
header="Order ID"
Expand Down
1,267 changes: 197 additions & 1,070 deletions projects/finance-grid/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions projects/finance-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"preview": "vite preview"
},
"dependencies": {
"igniteui-react": "^19.0.1",
"igniteui-react-grids": "^19.0.1",
"igniteui-react": "^19.0.2",
"igniteui-react-grids": "^19.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
Expand Down
Loading