Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f662fec

Browse files
rikRobinMalfait
authored andcommittedJul 13, 2023
Add aria-busy utility (#10966)
* Add aria-busy variant This is useful to show a spinner or dim a region that is updating. Very useful in conjunction with [Turbo](https://turbo.hotwired.dev/reference/attributes#automatically-added-attributes) * update changelog --------- Co-authored-by: Robin Malfait <[email protected]>
1 parent 762c511 commit f662fec

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Move unknown pseudo-elements outside of `:is` by default ([#11345](https://github.com/tailwindlabs/tailwindcss/pull/11345))
1717
- Escape animation names when prefixes contain special characters ([#11470](https://github.com/tailwindlabs/tailwindcss/pull/11470))
1818

19+
### Added
20+
21+
- Add `aria-busy` utility ([#10966](https://github.com/tailwindlabs/tailwindcss/pull/10966))
22+
1923
## [3.3.2] - 2023-04-25
2024

2125
### Fixed

‎stubs/config.full.js

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module.exports = {
1515
bounce: 'bounce 1s infinite',
1616
},
1717
aria: {
18+
busy: 'busy="true"',
1819
checked: 'checked="true"',
1920
disabled: 'disabled="true"',
2021
expanded: 'expanded="true"',

0 commit comments

Comments
 (0)
Please sign in to comment.