Skip to content

Commit 76dcdd8

Browse files
committed
chore(deps): bump package versions and tidy Clock interface
- Update Next, React, and React‑DOM to latest 15.5.7 / 19.2.1 - Bump shiki, prettier, stylelint, tsx, and typescript‑eslint to newer releases - Align @types/react and related type definitions - Simplify ClockProps interface formatting for readability - Keeps dependencies current and codebase clean for future updates.
1 parent 10627d0 commit 76dcdd8

File tree

4 files changed

+526
-235
lines changed

4 files changed

+526
-235
lines changed

docs/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121
"@mantinex/shiki": "^1.1.0",
2222
"@mdx-js/loader": "^3.1.1",
2323
"@mdx-js/react": "^3.1.1",
24-
"@next/mdx": "^15.5.6",
24+
"@next/mdx": "^15.5.7",
2525
"@tabler/icons-react": "^3.35.0",
2626
"@types/mdx": "^2.0.13",
27-
"next": "15.5.6",
28-
"react": "19.2.0",
29-
"react-dom": "19.2.0",
27+
"next": "15.5.7",
28+
"react": "19.2.1",
29+
"react-dom": "19.2.1",
3030
"remark-slug": "^7.0.1",
31-
"shiki": "^3.15.0",
31+
"shiki": "^3.19.0",
3232
"type-fest": "^4.41.0"
3333
},
3434
"devDependencies": {
3535
"@types/node": "^22.19.1",
36-
"@types/react": "^19.2.6",
36+
"@types/react": "^19.2.7",
3737
"@types/react-dom": "^19.2.3",
3838
"typescript": "5.9.3"
3939
}

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@types/identity-obj-proxy": "^3.0.2",
5555
"@types/jest": "^29.5.14",
5656
"@types/node": "^22.19.1",
57-
"@types/react": "^19.2.6",
57+
"@types/react": "^19.2.7",
5858
"@types/react-dom": "^19.2.3",
5959
"@types/signale": "^1.4.7",
6060
"@types/yargs": "^17.0.35",
@@ -77,9 +77,9 @@
7777
"open": "^10.2.0",
7878
"postcss": "^8.5.6",
7979
"postcss-preset-mantine": "1.18.0",
80-
"prettier": "^3.6.2",
81-
"react": "19.2.0",
82-
"react-dom": "19.2.0",
80+
"prettier": "^3.7.4",
81+
"react": "19.2.1",
82+
"react-dom": "19.2.1",
8383
"rimraf": "^6.1.2",
8484
"rollup": "^4.53.3",
8585
"rollup-plugin-banner2": "^1.3.1",
@@ -90,12 +90,12 @@
9090
"simple-git": "^3.30.0",
9191
"storybook": "^8.6.14",
9292
"storybook-dark-mode": "^4.0.2",
93-
"stylelint": "^16.26.0",
93+
"stylelint": "^16.26.1",
9494
"stylelint-config-standard-scss": "^14.0.0",
9595
"syncpack": "^13.0.4",
96-
"tsx": "^4.20.6",
96+
"tsx": "^4.21.0",
9797
"typescript": "5.9.3",
98-
"typescript-eslint": "^8.47.0",
98+
"typescript-eslint": "^8.48.1",
9999
"version-next": "^1.0.2",
100100
"vite": "^6.4.1",
101101
"yargs": "^17.7.2",

package/src/Clock.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,7 @@ export interface ClockArcsProps {
223223
}
224224

225225
export interface ClockProps
226-
extends BoxProps,
227-
ClockBaseProps,
228-
ClockArcsProps,
229-
StylesApiProps<ClockFactory> {}
226+
extends BoxProps, ClockBaseProps, ClockArcsProps, StylesApiProps<ClockFactory> {}
230227

231228
export type ClockFactory = Factory<{
232229
props: ClockProps;

0 commit comments

Comments
 (0)