Skip to content

Commit 95cf7a7

Browse files
committed
Update dependencies and adjust AddTabButton styles
Bump multiple dependencies including React, Electron, ESLint, TypeScript, and Webpack to latest versions for improved stability and compatibility. Adjust AddTabButton styles in tabbar and tabs components to refine button positioning.
1 parent 8865531 commit 95cf7a7

File tree

4 files changed

+167
-173
lines changed

4 files changed

+167
-173
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "syra",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "A beautiful fast custom Electron web browser built with react, styled components, typescript and electron.",
55
"author": "Revalex Technologies <revalextechnologies@gmail.com>",
66
"main": "build/main.bundle.js",
@@ -31,24 +31,24 @@
3131
"@babel/preset-env": "^7.28.5",
3232
"@babel/preset-react": "^7.28.5",
3333
"@babel/preset-typescript": "^7.28.5",
34-
"@eslint/js": "^9.39.1",
34+
"@eslint/js": "^9.39.2",
3535
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
3636
"@svgr/webpack": "^8.1.0",
37-
"@types/node": "^24.10.1",
37+
"@types/node": "^25.0.3",
3838
"@types/react": "^19.2.7",
3939
"@types/react-dom": "^19.2.3",
4040
"@types/react-refresh": "^0.14.7",
41-
"@typescript-eslint/eslint-plugin": "^8.48.1",
42-
"@typescript-eslint/parser": "^8.48.1",
41+
"@typescript-eslint/eslint-plugin": "^8.50.0",
42+
"@typescript-eslint/parser": "^8.50.0",
4343
"babel-loader": "^10.0.0",
4444
"concurrently": "^9.2.1",
4545
"copy-webpack-plugin": "^13.0.1",
4646
"cross-env": "^10.1.0",
4747
"css-loader": "^7.1.2",
48-
"electron": "^39.2.6",
48+
"electron": "^39.2.7",
4949
"electron-builder": "26.0.12",
5050
"electron-updater": "6.6.2",
51-
"eslint": "^9.39.1",
51+
"eslint": "^9.39.2",
5252
"eslint-config-prettier": "^10.1.8",
5353
"eslint-plugin-prettier": "^5.5.4",
5454
"eslint-plugin-react": "^7.37.5",
@@ -57,17 +57,17 @@
5757
"global": "^4.4.0",
5858
"html-webpack-plugin": "^5.6.5",
5959
"prettier": "^3.7.4",
60-
"react": "^19.2.1",
61-
"react-dom": "^19.2.1",
60+
"react": "^19.2.3",
61+
"react-dom": "^19.2.3",
6262
"react-refresh": "^0.18.0",
6363
"style-loader": "^4.0.0",
6464
"styled-components": "^6.1.19",
6565
"ts-loader": "^9.5.4",
6666
"ts-node": "^10.9.2",
6767
"typescript": "^5.9.3",
68-
"typescript-eslint": "^8.48.1",
68+
"typescript-eslint": "^8.50.0",
6969
"wait-on": "^9.0.3",
70-
"webpack": "^5.103.0",
70+
"webpack": "^5.104.1",
7171
"webpack-cli": "^6.0.1",
7272
"webpack-dev-server": "^5.2.2"
7373
}

src/renderer/views/app/components/tabbar/style.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export const TabbarContainer = styled.div`
3030
export const AddTabButton = styled(NavButton)`
3131
margin-top: 6px;
3232
margin-left: -2.3px;
33+
transform: translate(-2px, -2.3px);
3334
width: 26px;
3435
min-width: 26px;
3536
height: 26px;

src/renderer/views/app/components/tabs/style.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ export const AddTabButton = styled.div`
333333
background-repeat: no-repeat;
334334
background-size: 18px;
335335
background-position: center;
336+
transform: translate(-1px, -7px);
336337
opacity: 0.54;
337338
338339
&:hover {

0 commit comments

Comments
 (0)