Skip to content

Commit cb24ef6

Browse files
authored
Update UI dependencies (#819)
1 parent fe77acd commit cb24ef6

26 files changed

+532
-641
lines changed

ui/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<!-- These are the fonts used in the app -->
76
<link
87
rel="preload"
98
href="./public/fonts/CircularXXWeb-Medium.woff2"
@@ -32,6 +31,13 @@
3231
type="font/woff2"
3332
crossorigin
3433
/>
34+
<link
35+
rel="preload"
36+
href="./public/fonts/CircularXXWeb-Bold.woff2"
37+
as="font"
38+
type="font/woff2"
39+
crossorigin
40+
/>
3541
<title>JetKVM</title>
3642
<link rel="stylesheet" href="./public/fonts/fonts.css" />
3743
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />

ui/package-lock.json

Lines changed: 496 additions & 537 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kvm-ui",
33
"private": true,
4-
"version": "2025.09.03.2100",
4+
"version": "2025.09.23.0000",
55
"type": "module",
66
"engines": {
77
"node": "22.15.0"
@@ -19,7 +19,7 @@
1919
"preview": "vite preview"
2020
},
2121
"dependencies": {
22-
"@headlessui/react": "^2.2.7",
22+
"@headlessui/react": "^2.2.8",
2323
"@headlessui/tailwindcss": "^0.2.2",
2424
"@heroicons/react": "^2.2.0",
2525
"@vitejs/plugin-basic-ssl": "^2.1.0",
@@ -33,53 +33,53 @@
3333
"dayjs": "^1.11.18",
3434
"eslint-import-resolver-alias": "^1.1.2",
3535
"focus-trap-react": "^11.0.4",
36-
"framer-motion": "^12.23.12",
36+
"framer-motion": "^12.23.18",
3737
"lodash.throttle": "^4.1.1",
3838
"mini-svg-data-uri": "^1.4.4",
3939
"react": "^19.1.1",
4040
"react-animate-height": "^3.2.3",
4141
"react-dom": "^19.1.1",
4242
"react-hot-toast": "^2.6.0",
4343
"react-icons": "^5.5.0",
44-
"react-router": "^7.8.2",
45-
"react-simple-keyboard": "^3.8.119",
44+
"react-router": "^7.9.1",
45+
"react-simple-keyboard": "^3.8.122",
4646
"react-use-websocket": "^4.13.0",
4747
"react-xtermjs": "^1.0.10",
48-
"recharts": "^3.1.2",
48+
"recharts": "^3.2.1",
4949
"tailwind-merge": "^3.3.1",
5050
"usehooks-ts": "^3.1.1",
5151
"validator": "^13.15.15",
5252
"zustand": "^4.5.2"
5353
},
5454
"devDependencies": {
55-
"@eslint/compat": "^1.3.2",
55+
"@eslint/compat": "^1.4.0",
5656
"@eslint/eslintrc": "^3.3.1",
57-
"@eslint/js": "^9.34.0",
57+
"@eslint/js": "^9.36.0",
5858
"@tailwindcss/forms": "^0.5.10",
59-
"@tailwindcss/postcss": "^4.1.12",
60-
"@tailwindcss/typography": "^0.5.16",
61-
"@tailwindcss/vite": "^4.1.12",
62-
"@types/react": "^19.1.12",
59+
"@tailwindcss/postcss": "^4.1.13",
60+
"@tailwindcss/typography": "^0.5.18",
61+
"@tailwindcss/vite": "^4.1.13",
62+
"@types/react": "^19.1.13",
6363
"@types/react-dom": "^19.1.9",
6464
"@types/semver": "^7.7.1",
6565
"@types/validator": "^13.15.3",
66-
"@typescript-eslint/eslint-plugin": "^8.42.0",
67-
"@typescript-eslint/parser": "^8.42.0",
68-
"@vitejs/plugin-react-swc": "^4.0.1",
66+
"@typescript-eslint/eslint-plugin": "^8.44.1",
67+
"@typescript-eslint/parser": "^8.44.1",
68+
"@vitejs/plugin-react-swc": "^4.1.0",
6969
"autoprefixer": "^10.4.21",
70-
"eslint": "^9.34.0",
70+
"eslint": "^9.36.0",
7171
"eslint-config-prettier": "^10.1.8",
7272
"eslint-plugin-import": "^2.32.0",
7373
"eslint-plugin-react": "^7.37.5",
7474
"eslint-plugin-react-hooks": "^5.2.0",
75-
"eslint-plugin-react-refresh": "^0.4.20",
76-
"globals": "^16.3.0",
75+
"eslint-plugin-react-refresh": "^0.4.21",
76+
"globals": "^16.4.0",
7777
"postcss": "^8.5.6",
7878
"prettier": "^3.6.2",
7979
"prettier-plugin-tailwindcss": "^0.6.14",
80-
"tailwindcss": "^4.1.12",
80+
"tailwindcss": "^4.1.13",
8181
"typescript": "^5.9.2",
82-
"vite": "^7.1.5",
82+
"vite": "^7.1.7",
8383
"vite-tsconfig-paths": "^5.1.4"
8484
}
8585
}

ui/public/favicon.svg

Lines changed: 1 addition & 1 deletion
Loading

ui/public/jetkvm.svg

Lines changed: 1 addition & 1 deletion
Loading

ui/src/assets/arch-icon.png

-774 Bytes
Loading

ui/src/assets/centos-icon.png

-827 Bytes
Loading

ui/src/assets/coreos-icon.png

-913 Bytes
Loading

ui/src/assets/debian-icon.png

-1007 Bytes
Loading

ui/src/assets/detach-icon.svg

Lines changed: 1 addition & 15 deletions
Loading

0 commit comments

Comments
 (0)