Skip to content

Commit

Permalink
fix: deps (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbien authored Mar 12, 2024
1 parent f95d821 commit c838d0c
Show file tree
Hide file tree
Showing 6 changed files with 1,641 additions and 1,658 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18.x
check-latest: true
cache: pnpm
- name: Install all packages
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18.x
check-latest: true
cache: pnpm
- name: Install all packages
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18.x
check-latest: true
cache: pnpm
- name: Install all packages
Expand All @@ -95,7 +95,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18.x
check-latest: true
cache: pnpm
- name: Install all packages
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18.x
check-latest: true
cache: pnpm
- name: Install all packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18.x
check-latest: true
cache: pnpm
- name: Install all packages
Expand Down
8 changes: 4 additions & 4 deletions apps/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"frosted-ui": "workspace*",
"next": "^13.4.1",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand All @@ -21,9 +21,9 @@
},
"devDependencies": {
"@types/node": "^17.0.12",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/react": "^18.2.53",
"@types/react-dom": "^18.2.18",
"eslint-config-custom": "*",
"typescript": "^4.5.3"
"typescript": "^5.3.3"
}
}
14 changes: 7 additions & 7 deletions packages/frosted-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"release": "turbo-module publish"
},
"dependencies": {
"@internationalized/date": "^3.5.1",
"@internationalized/date": "^3.5.2",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/primitive": "^1.0.1",
"@radix-ui/react-accessible-icon": "^1.0.3",
Expand Down Expand Up @@ -87,7 +87,7 @@
"@react-stately/calendar": "^3.4.2",
"@react-stately/datepicker": "^3.9.1",
"classnames": "^2.3.2",
"react-aria-components": "1.0.0-rc.0",
"react-aria-components": "1.1.1",
"tailwindcss": "^3.3.5",
"tslib": "^2.6.2"
},
Expand Down Expand Up @@ -121,8 +121,8 @@
"@storybook/react-vite": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@tanstack/react-table": "^8.11.8",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/react": "^18.2.53",
"@types/react-dom": "^18.2.18",
"@whop-sdk/turbo-module": "^0.0.5",
"autoprefixer": "^10.4.16",
"eslint": "^8.15.0",
Expand All @@ -134,11 +134,11 @@
"postcss-discard-empty": "^6.0.0",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.6",
"stylelint": "^15.10.3",
"typescript": "^4.5.3"
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
5 changes: 4 additions & 1 deletion packages/frosted-ui/src/components/select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ interface SelectTriggerProps
'asChild'
>,
MarginProps,
SelectTriggerOwnProps {}
SelectTriggerOwnProps {
// TODO: figure out why this is not inferred properly
placeholder?: React.ReactNode;
}
const SelectTrigger = React.forwardRef<
SelectTriggerElement,
SelectTriggerProps
Expand Down
Loading

0 comments on commit c838d0c

Please sign in to comment.