Skip to content

Commit 88ceb3c

Browse files
authored
Merge pull request #592 from dev-five-git/impl-length-shadow
Impl length and shadow
2 parents edad7d0 + 1b217f4 commit 88ceb3c

File tree

87 files changed

+1914
-760
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1914
-760
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"packages/bun-plugin/package.json":"Patch","packages/components/package.json":"Patch","packages/eslint-plugin/package.json":"Patch","packages/react/package.json":"Patch","packages/rsbuild-plugin/package.json":"Patch","packages/webpack-plugin/package.json":"Patch","packages/vite-plugin/package.json":"Patch","packages/next-plugin/package.json":"Patch","bindings/devup-ui-wasm/package.json":"Patch","packages/reset-css/package.json":"Patch","packages/plugin-utils/package.json":"Patch"},"note":"Impl length and shadow token","date":"2026-03-24T12:57:54.455665500Z"}

Cargo.lock

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

apps/landing/mdx.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
declare module '*.mdx' {
2+
import type { ComponentType } from 'react'
3+
4+
const Component: ComponentType
5+
export default Component
6+
}

apps/landing/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"@devup-ui/reset-css": "workspace:^",
1717
"@mdx-js/loader": "^3.1",
1818
"@mdx-js/react": "^3.1",
19-
"@next/mdx": "^16.1",
19+
"@next/mdx": "^16.2",
2020
"body-scroll-lock": "3.1",
2121
"clsx": "^2.1",
2222
"lenis": "1.3",
23-
"next": "^16.1",
23+
"next": "^16.2",
2424
"react": "^19.2",
2525
"react-dom": "^19.2",
2626
"react-markdown": "^10.1",
@@ -35,6 +35,6 @@
3535
"@types/react-dom": "^19",
3636
"@types/react-syntax-highlighter": "^15.5",
3737
"babel-plugin-react-compiler": "^1.0",
38-
"typescript": "^5"
38+
"typescript": "^6"
3939
}
4040
}

apps/next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"dependencies": {
1313
"react": "^19.2",
1414
"react-dom": "^19.2",
15-
"next": "^16.1",
15+
"next": "^16.2",
1616
"@devup-ui/react": "workspace:^",
1717
"vite-lib-example": "workspace:^"
1818
},
1919
"devDependencies": {
2020
"@devup-ui/next-plugin": "workspace:^",
21-
"typescript": "^5",
21+
"typescript": "^6",
2222
"@types/node": "^25",
2323
"@types/react": "^19.2",
2424
"@types/react-dom": "^19.2"

apps/vite-lib/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"devDependencies": {
1919
"vite-plugin-dts": "^4.5",
2020
"@devup-ui/vite-plugin": "workspace:^",
21-
"@vitejs/plugin-react": "^5.1.4",
22-
"vite": "^7.3",
23-
"typescript": "^5",
21+
"@vitejs/plugin-react": "^6.0.1",
22+
"vite": "^8.0",
23+
"typescript": "^6",
2424
"@types/node": "^25",
2525
"@types/react": "^19"
2626
}

apps/vite/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
},
1818
"devDependencies": {
1919
"@devup-ui/vite-plugin": "workspace:^",
20-
"vite": "^7.3",
21-
"@vitejs/plugin-react": "^5.1",
22-
"typescript": "^5",
20+
"vite": "^8.0",
21+
"@vitejs/plugin-react": "^6.0",
22+
"typescript": "^6",
2323
"@types/node": "^25",
2424
"@types/react": "^19",
2525
"@types/react-dom": "^19"

benchmark/next-chakra-ui/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
"lint": "next lint"
1111
},
1212
"dependencies": {
13-
"@chakra-ui/react": "^3.32",
13+
"@chakra-ui/react": "^3.34",
1414
"@emotion/react": "^11.14",
15-
"next": "^16.1",
15+
"next": "^16.2",
1616
"next-themes": "^0.4",
1717
"react": "^19.2",
1818
"react-dom": "^19.2",
19-
"react-icons": "^5.5"
19+
"react-icons": "^5.6"
2020
},
2121
"devDependencies": {
2222
"@types/node": "^25",
2323
"@types/react": "^19",
2424
"@types/react-dom": "^19",
25-
"typescript": "^5"
25+
"typescript": "^6"
2626
}
2727
}

benchmark/next-devup-ui-single-turbo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"dependencies": {
1313
"react": "^19.2",
1414
"react-dom": "^19.2",
15-
"next": "^16.1",
15+
"next": "^16.2",
1616
"@devup-ui/react": "workspace:^"
1717
},
1818
"devDependencies": {
1919
"@devup-ui/next-plugin": "workspace:^",
20-
"typescript": "^5",
20+
"typescript": "^6",
2121
"@types/node": "^25",
2222
"@types/react": "^19",
2323
"@types/react-dom": "^19"

0 commit comments

Comments
 (0)