Move types condition to the front (#2469)

* move `types` condition to the front

* Update changelog

---------

Co-authored-by: Jordan Pittman <jordan@cryptica.me>
This commit is contained in:
Mateusz Burzyński
2023-05-01 18:21:28 +02:00
committed by GitHub
parent 7c0cbbbca7
commit 0505e92b83
4 changed files with 12 additions and 4 deletions
+4
View File
@@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Ensure `FocusTrap` is only active when the given `enabled` value is `true` ([#2456](https://github.com/tailwindlabs/headlessui/pull/2456))
- Stop `<Transition appear>` from overwriting classes on re-render ([#2457](https://github.com/tailwindlabs/headlessui/pull/2457))
### Changed
- Move `types` condition to the front ([#2469](https://github.com/tailwindlabs/headlessui/pull/2469))
## [1.7.14] - 2023-04-12
### Fixed
+2 -2
View File
@@ -11,9 +11,9 @@
"dist"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/headlessui.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
"require": "./dist/index.cjs"
},
"type": "module",
"sideEffects": false,
+4
View File
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Ensure `FocusTrap` is only active when the given `enabled` value is `true` ([#2456](https://github.com/tailwindlabs/headlessui/pull/2456))
- Ensure the exposed `activeIndex` is up to date for the `Combobox` component ([#2463](https://github.com/tailwindlabs/headlessui/pull/2463))
### Changed
- Move `types` condition to the front ([#2469](https://github.com/tailwindlabs/headlessui/pull/2469))
## [1.7.13] - 2023-04-12
### Fixed
+2 -2
View File
@@ -11,9 +11,9 @@
"dist"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/headlessui.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
"require": "./dist/index.cjs"
},
"type": "module",
"sideEffects": false,