File tree Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Ensure we are not freezing data when the ` static ` prop is used ([ #3779 ] ( https://github.com/tailwindlabs/headlessui/pull/3779 ) )
13
13
- Ensure ` onChange ` types are contravariant instead of bivariant ([ #3781 ] ( https://github.com/tailwindlabs/headlessui/pull/3781 ) )
14
- - Support ` <details> ` as a focusable element without ` <summary> ` ([ #3389 ] ( https://github.com/tailwindlabs/headlessui/pull/3389 ) )
15
14
- Support ` <summary> ` as a focusable element inside ` <details> ` ([ #3389 ] ( https://github.com/tailwindlabs/headlessui/pull/3389 ) )
16
15
17
16
## [ 2.2.7] - 2025-07-30
Original file line number Diff line number Diff line change @@ -489,7 +489,8 @@ let focusableSelector = [
489
489
'iframe' ,
490
490
'input:not([disabled])' ,
491
491
'select:not([disabled])' ,
492
- 'details:not(:has(> summary))' ,
492
+ // TODO: Re-enable once we bump JSDOM
493
+ // 'details:not(:has(> summary))',
493
494
'details>summary' ,
494
495
'textarea:not([disabled])' ,
495
496
]
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ export let focusableSelector = [
15
15
'iframe' ,
16
16
'input:not([disabled])' ,
17
17
'select:not([disabled])' ,
18
- 'details:not(:has(> summary))' ,
18
+ // TODO: Re-enable once we bump JSDOM
19
+ // 'details:not(:has(> summary))',
19
20
'details>summary' ,
20
21
'textarea:not([disabled])' ,
21
22
]
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
18
- Fix restoring focus to correct element when closing ` Dialog ` component ([ #3365 ] ( https://github.com/tailwindlabs/headlessui/pull/3365 ) )
19
19
- Cleanup ` process ` in Combobox component when using virtualization ([ #3495 ] ( https://github.com/tailwindlabs/headlessui/pull/3495 ) )
20
20
- Ensure outside click properly works when clicking SVG elements ([ #3777 ] ( https://github.com/tailwindlabs/headlessui/pull/3777 ) )
21
- - Support ` <details> ` as a focusable element without ` <summary> ` ([ #3389 ] ( https://github.com/tailwindlabs/headlessui/pull/3389 ) )
22
21
- Support ` <summary> ` as a focusable element inside ` <details> ` ([ #3389 ] ( https://github.com/tailwindlabs/headlessui/pull/3389 ) )
23
22
24
23
## [ 1.7.22] - 2024-05-08
Original file line number Diff line number Diff line change @@ -467,7 +467,8 @@ let focusableSelector = [
467
467
'iframe' ,
468
468
'input:not([disabled])' ,
469
469
'select:not([disabled])' ,
470
- 'details:not(:has(> summary))' ,
470
+ // TODO: Re-enable once we bump JSDOM
471
+ // 'details:not(:has(> summary))',
471
472
'details>summary' ,
472
473
'textarea:not([disabled])' ,
473
474
]
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ export let focusableSelector = [
13
13
'iframe' ,
14
14
'input:not([disabled])' ,
15
15
'select:not([disabled])' ,
16
- 'details:not(:has(> summary))' ,
16
+ // TODO: Re-enable once we bump JSDOM
17
+ // 'details:not(:has(> summary))',
17
18
'details>summary' ,
18
19
'textarea:not([disabled])' ,
19
20
]
You can’t perform that action at this time.
0 commit comments