Skip to content

Add Fleet Management Sample #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
May 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d0c1cbc
add fleet management sample
IMinchev64 Apr 15, 2025
f68b356
fix: set maintenance grid column headers instead of fields on column …
IMinchev64 Apr 17, 2025
7137704
add location overlay
IMinchev64 Apr 24, 2025
ac47b08
fix: cost tab charts changing displayed data based on selected period
IMinchev64 Apr 25, 2025
5f9e0ae
fix: utilization chart legend
IMinchev64 Apr 25, 2025
6f7f8ff
add remote data + code cleanup
IMinchev64 Apr 25, 2025
78a912b
Merge remote-tracking branch 'origin/vnext' into iminchev/fleet-manag…
IMinchev64 Apr 25, 2025
128ce3d
adjust fleet sample to work in main app with tabs
IMinchev64 Apr 25, 2025
3ae0bd1
fix: scope igc-avatar style to hr-portal sample
IMinchev64 Apr 28, 2025
ca45c3b
update: samples versions
IMinchev64 Apr 30, 2025
10b28b0
feat: enhance fleet management grid with driver overlay and nested gr…
IMinchev64 May 2, 2025
a3f8572
chore: add 'lit' library to package and project dependencies
IMinchev64 May 2, 2025
99922de
chore: update igniteui-react and igniteui-react-grids to version 19.0.1
IMinchev64 May 2, 2025
6e3b0b8
Merge remote-tracking branch 'origin/vnext' into iminchev/fleet-manag…
IMinchev64 May 2, 2025
832f71a
Update root project React version
IMinchev64 May 7, 2025
5576058
Merge remote-tracking branch 'origin/vnext' into iminchev/fleet-manag…
IMinchev64 May 7, 2025
93fc598
Resolve build check error
IMinchev64 May 7, 2025
e9d432b
Fix lint error
IMinchev64 May 7, 2025
2aaadfa
Fix lint warnings
IMinchev64 May 7, 2025
8647633
Update dependencies to resolve another build error
IMinchev64 May 7, 2025
edb4881
fix: use correct parameters for templates
IMinchev64 May 8, 2025
2bc7e11
Merge branch 'vnext' into iminchev/fleet-management
IMinchev64 May 9, 2025
933b2f3
Refactor styles.scss
IMinchev64 May 13, 2025
411b697
Remove routing
IMinchev64 May 13, 2025
d037aed
Remove refs from useEffect dep array and add strict typings
IMinchev64 May 13, 2025
57ad638
Minor fix for lint warning
IMinchev64 May 13, 2025
ba19bbe
remove old json data files
IMinchev64 May 13, 2025
3b564a6
Remove redundant app.tsx
IMinchev64 May 15, 2025
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
2,366 changes: 1,280 additions & 1,086 deletions package-lock.json

Large diffs are not rendered by default.

25 changes: 14 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,35 @@
"test": "vitest"
},
"dependencies": {
"@floating-ui/react": "^0.27.7",
"@floating-ui/react": "^0.27.8",
"@igniteui/material-icons-extended": "^3.0.0",
"element-internals-polyfill": "^1.3.10",
"functions-have-names": "^1.2.3",
"igniteui-react": "19.0.0-alpha.4",
"igniteui-react": "19.0.1",
"igniteui-react-charts": "19.0.0-alpha.0",
"igniteui-react-core": "19.0.0-alpha.0",
"igniteui-react-grids": "19.0.0-alpha.4",
"react": "^18.2.0",
"igniteui-react-grids": "19.0.1",
"igniteui-react-maps": "19.0.0-alpha.0",
"lit": "^3.3.0",
"react": "^19.0.0",
"react-app-polyfill": "^0.2.0",
"react-dom": "^18.2.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.16.0",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^9.20.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-react-refresh": "^0.4.19",
"igniteui-cli": "~14.3.16",
"jsdom": "^22.1.0",
"sass": "^1.86.3",
"typescript": "~5.5.4",
"typescript": "~5.7.2",
"vite": "^6.3.4",
"vite-plugin-static-copy": "^2.3.1"
},
Expand Down
Loading