Skip to content

Commit 60b1442

Browse files
committed
ui
1 parent 41ff77a commit 60b1442

15 files changed

Lines changed: 138 additions & 63 deletions

bun.lock

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

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,9 @@
2828
"packageManager": "bun@1.1.0",
2929
"engines": {
3030
"node": ">=18"
31+
},
32+
"overrides": {
33+
"@types/react": "19.2.14",
34+
"@types/react-dom": "19.2.3"
3135
}
3236
}

packages/ai/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"devDependencies": {
3434
"tsup": "^8.0.0",
3535
"typescript": "^5.4.0",
36-
"@types/react": "^18.2.0",
37-
"@types/react-dom": "^18.2.0"
36+
"@types/react": "^19.0.0",
37+
"@types/react-dom": "^19.0.0"
3838
},
3939
"peerDependencies": {
4040
"react": "^18.0.0 || ^19.0.0",

packages/ai/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4+
"noEmit": true,
45
"outDir": "./dist",
56
"rootDir": "./src"
67
},

packages/explorer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
"devDependencies": {
3030
"tsup": "^8.0.0",
3131
"typescript": "^5.4.0",
32-
"@types/react": "^18.2.0",
33-
"@types/react-dom": "^18.2.0"
32+
"@types/react": "^19.0.0",
33+
"@types/react-dom": "^19.0.0"
3434
},
3535
"peerDependencies": {
3636
"react": "^18.0.0 || ^19.0.0",

packages/explorer/tsconfig.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"extends": "../../tsconfig.base.json",
3-
"compilerOptions": {
4-
"outDir": "./dist",
5-
"rootDir": "./src"
6-
},
7-
"include": ["src/**/*"],
8-
"exclude": ["dist", "node_modules"]
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"noEmit": true,
5+
"outDir": "./dist",
6+
"rootDir": "./src"
7+
},
8+
"include": ["src/**/*"],
9+
"exclude": ["dist", "node_modules"]
910
}

packages/forms/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"devDependencies": {
2929
"tsup": "^8.0.0",
3030
"typescript": "^5.4.0",
31-
"@types/react": "^18.2.0",
32-
"@types/react-dom": "^18.2.0"
31+
"@types/react": "^19.0.0",
32+
"@types/react-dom": "^19.0.0"
3333
},
3434
"peerDependencies": {
3535
"react": "^18.0.0 || ^19.0.0",

packages/forms/tsconfig.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"extends": "../../tsconfig.base.json",
3-
"compilerOptions": {
4-
"outDir": "./dist",
5-
"rootDir": "./src"
6-
},
7-
"include": ["src/**/*"],
8-
"exclude": ["dist", "node_modules"]
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"noEmit": true,
5+
"outDir": "./dist",
6+
"rootDir": "./src"
7+
},
8+
"include": ["src/**/*"],
9+
"exclude": ["dist", "node_modules"]
910
}

packages/primitives/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"devDependencies": {
5050
"tsup": "^8.0.0",
5151
"typescript": "^5.4.0",
52-
"@types/react": "^18.2.0",
53-
"@types/react-dom": "^18.2.0",
52+
"@types/react": "^19.0.0",
53+
"@types/react-dom": "^19.0.0",
5454
"tailwindcss": "^4.1.0"
5555
},
5656
"peerDependencies": {

packages/primitives/src/CircularProgress.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export type CircularProgressProps = {
3232
export const CircularProgress: FunctionComponent<CircularProgressProps> = ({
3333
radius,
3434
progress,
35-
steps = 100,
36-
cut = 0,
35+
steps: _steps = 100,
36+
cut: _cut = 0,
3737
rotate = -90,
3838
strokeWidth = 20,
3939
strokeColor = "indianred",
@@ -48,8 +48,8 @@ export const CircularProgress: FunctionComponent<CircularProgressProps> = ({
4848
trackStrokeWidth = 20,
4949
trackStrokeLinecap = "round",
5050
trackTransition = ".3s ease",
51-
counterClockwise = false,
52-
inverse = false,
51+
counterClockwise: _counterClockwise = false,
52+
inverse: _inverse = false,
5353
initialAnimation = false,
5454
initialAnimationDelay = 0,
5555
className = "",

0 commit comments

Comments
 (0)