Skip to content

Commit

Permalink
Move types condition to the front (#2469)
Browse files Browse the repository at this point in the history
* move `types` condition to the front

* Update changelog

---------

Co-authored-by: Jordan Pittman <jordan@cryptica.me>
  • Loading branch information
Andarist and thecrypticace committed May 1, 2023
1 parent 7c0cbbb commit 0505e92
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/@headlessui-react/CHANGELOG.md
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/@headlessui-react/package.json
Expand Up @@ -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,
Expand Down
4 changes: 4 additions & 0 deletions packages/@headlessui-vue/CHANGELOG.md
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/@headlessui-vue/package.json
Expand Up @@ -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,
Expand Down

2 comments on commit 0505e92

@vercel
Copy link

@vercel vercel bot commented on 0505e92 May 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

headlessui-vue – ./packages/playground-vue

headlessui-vue.vercel.app
headlessui-vue-git-main-tailwindlabs.vercel.app
headlessui-vue-tailwindlabs.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 0505e92 May 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

headlessui-react – ./packages/playground-react

headlessui-react.vercel.app
headlessui-react-git-main-tailwindlabs.vercel.app
headlessui-react-tailwindlabs.vercel.app

Please sign in to comment.