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
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
# registry-url enables OIDC authentication for npm publish

- name: Enable Corepack
run: corepack enable
Expand All @@ -43,3 +44,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# No NPM_TOKEN needed - using trusted publishing via OIDC
# The registry-url in setup-node@v4 enables OIDC authentication
# npm CLI 11.5.1+ automatically detects OIDC and uses it for publish
1 change: 1 addition & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- 39156a7: Enable typing to open and search select dropdowns. When focused on a select trigger, typing any printable character will open the dropdown, focus the search input, and pre-populate the search with the typed character.
- 6921b25: Fix cursor positioning when focusing search input in select dropdowns. Prevents text selection when opening select dropdown via typing, allowing users to continue typing without overwriting the first character.
- 1860649: Fix circular dependency in DataTableFilter import by importing directly from component file instead of index.
- bca6619: Add uncontrolled mode to FormError component via a manual `message` prop.

## 0.22.2
Expand Down
Loading