Skip to content

Commit 0505e92

Browse files
Move types condition to the front (#2469)
* move `types` condition to the front * Update changelog --------- Co-authored-by: Jordan Pittman <jordan@cryptica.me>
1 parent 7c0cbbb commit 0505e92

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

packages/@headlessui-react/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
- Ensure `FocusTrap` is only active when the given `enabled` value is `true` ([#2456](https://github.com/tailwindlabs/headlessui/pull/2456))
1717
- Stop `<Transition appear>` from overwriting classes on re-render ([#2457](https://github.com/tailwindlabs/headlessui/pull/2457))
1818

19+
### Changed
20+
21+
- Move `types` condition to the front ([#2469](https://github.com/tailwindlabs/headlessui/pull/2469))
22+
1923
## [1.7.14] - 2023-04-12
2024

2125
### Fixed

packages/@headlessui-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"dist"
1212
],
1313
"exports": {
14+
"types": "./dist/index.d.ts",
1415
"import": "./dist/headlessui.esm.js",
15-
"require": "./dist/index.cjs",
16-
"types": "./dist/index.d.ts"
16+
"require": "./dist/index.cjs"
1717
},
1818
"type": "module",
1919
"sideEffects": false,

packages/@headlessui-vue/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
- Ensure `FocusTrap` is only active when the given `enabled` value is `true` ([#2456](https://github.com/tailwindlabs/headlessui/pull/2456))
1414
- Ensure the exposed `activeIndex` is up to date for the `Combobox` component ([#2463](https://github.com/tailwindlabs/headlessui/pull/2463))
1515

16+
### Changed
17+
18+
- Move `types` condition to the front ([#2469](https://github.com/tailwindlabs/headlessui/pull/2469))
19+
1620
## [1.7.13] - 2023-04-12
1721

1822
### Fixed

packages/@headlessui-vue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"dist"
1212
],
1313
"exports": {
14+
"types": "./dist/index.d.ts",
1415
"import": "./dist/headlessui.esm.js",
15-
"require": "./dist/index.cjs",
16-
"types": "./dist/index.d.ts"
16+
"require": "./dist/index.cjs"
1717
},
1818
"type": "module",
1919
"sideEffects": false,

0 commit comments

Comments
 (0)