Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,40 @@
## Changelog

## 3.0.0
Comment thread
badiuoanaalexandra marked this conversation as resolved.
Outdated

- Add suppport for React 19
Comment thread
badiuoanaalexandra marked this conversation as resolved.
Outdated
- Upgrade radix packages

## 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