Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- run: npm ci

- run: npm test -- --watchAll=false
Comment thread
tristen marked this conversation as resolved.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,44 @@
## Changelog

## 2.22.0

- [feature] Add support for React 19 as a peer dependency
- [feature] Upgrade all Radix UI packages to latest versions. Components behave the same way in the browser, but unit tests might need to be updated:
- `role="tooltip"` changed to `role="dialog"`
- [known issue](https://github.com/radix-ui/primitives/discussions/1130) with @radix-ui/react-portal. Instead of relying on `role="dialog"`, just check for the content of the portal instead
- [feature] Add optional `accessibleDescription` to `Drawer` and `Modal` props. Defaults to `accessibleTitle` if not provided.
- [fix] Fix React key warning in `ControlRange` tooltip rendering

## 2.21.1

- [fix] Remove `exports` from `package.json` to fix the issue when importing this package

## 2.21.0

- [feature] Add theme props to `Toast`

## 2.20.1

- [fix] `package.json` instructions to fix Vite module resolution errors.

## 2.20.0

- [feature] Add keyboard format utilities

## 2.19.1

- [bug] Bad published build of pkg

## 2.19.0

- [feature] Add `tooltip` option to range slider

## 2.18.0

- [feature] Restyle Tab

## 2.17.1

- [fix] Fixes clickOutsideCloses property in Popover component

## 2.17.0
Expand Down
Loading
Loading