diff --git a/.changeset/eager-colts-clean.md b/.changeset/eager-colts-clean.md
deleted file mode 100644
index 68fca4a71..000000000
--- a/.changeset/eager-colts-clean.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@qwik-ui/headless': patch
----
-
-Fix disabled state handling for Select.Trigger
diff --git a/packages/kit-headless/CHANGELOG.md b/packages/kit-headless/CHANGELOG.md
index 5e8388228..72f8cb15d 100644
--- a/packages/kit-headless/CHANGELOG.md
+++ b/packages/kit-headless/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## 0.7.2
+
+### Patch Changes
+
+- Fix disabled state handling for Select.Trigger (by [@Caesarovich](https://github.com/Caesarovich) in [#1134](https://github.com/qwikifiers/qwik-ui/pull/1134))
+
## 0.7.1
### Patch Changes
@@ -43,7 +49,6 @@
### Patch Changes
- Select fixes for: (by [@thejackshelton](https://github.com/thejackshelton) in [#1042](https://github.com/qwikifiers/qwik-ui/pull/1042))
-
- [#1001](https://github.com/qwikifiers/qwik-ui/issues/1001)
- [#979](https://github.com/qwikifiers/qwik-ui/issues/979)
@@ -60,7 +65,6 @@
๐ก Combobox inline mode allows for command palettes or other use cases where the search input is directly on the page.
๐ Carousel fixes:
-
- [#1032](https://github.com/qwikifiers/qwik-ui/issues/1032)
- [#1023](https://github.com/qwikifiers/qwik-ui/issues/1023)
- [#1006](https://github.com/qwikifiers/qwik-ui/issues/1006)
@@ -90,27 +94,22 @@
- # Combobox Improvements (by [@thejackshelton](https://github.com/thejackshelton) in [#968](https://github.com/qwikifiers/qwik-ui/pull/968))
## ๐ Reactive Improvements
-
- Better handling of array-based values
- Improved handling of initial and reactive values
## ๐ Key Bug Fixes
-
- Fixed highlight jumping issues
- Enhanced empty input handling
- Better filtered item highlighting
## ๐ฑ๏ธ Interaction Enhancements
-
- Smoother scrolling experience
- Improved keyboard and mouse coordination
## ๐ Performance Optimizations
-
- More efficient item filtering
## ๐งช Reliability
-
- Added tests for reactivity handling, item unselection, and mouse-to-pointer interaction switching
- Improved handling of edge cases in user interactions
@@ -197,39 +196,30 @@
```
### Anatomy Changes
-
1. **Combobox.Option** has been renamed to **Combobox.Item**:
-
- The item is no longer restricted to a string value; any UI can be placed inside the item.
- Use the `Combobox.ItemLabel` component to display the item's label, which becomes the item's value if no `value` prop is passed to the `Combobox.Item`. (required)
2. **Combobox.Listbox** has been deprecated.
3. **Combobox.ItemLabel** has been added:
-
- Move the string value that was once inside `Combobox.Option` into `Combobox.ItemLabel`. (required)
4. **Combobox.ItemIndicator** has been added:
-
- This component is used to render UI based on the selected state of the item. (optional)
5. **Combobox.Description** has been added:
-
- The text rendered inside the description component is displayed to screen readers as an accessible description of the combobox. (optional)
6. **Combobox.ErrorMessage** has been added:
-
- When this component is rendered, the Combobox will be marked as invalid. (optional)
7. **Combobox.HiddenNativeSelect** has been added:
-
- A native select element allows the submission of forms with the combobox. This component is visually hidden and hidden from screen readers. (optional)
8. **Combobox.Group** has been added:
-
- Used to visually group related items together. (optional)
9. **Combobox.GroupLabel** has been added:
-
- Provides an accessible name for the group. (optional)
10. **Combobox.Empty** has been added:
@@ -243,7 +233,6 @@
The `optionRenderer# Changelog prop on the `Combobox.Listbox` component has been deprecated.
Instead:
-
1. pass a `` as a child of the `` component.
2. pass a `Combobox.ItemLabel` as a child of the `` component.
@@ -411,7 +400,6 @@
#### Forms
The Combobox now supports form submissions. To enable this:
-
1. Add the `name` prop to the `Combobox.Root` component, with the name of the Combobox form field.
2. Add the `` component inside of the `` component.
@@ -457,7 +445,6 @@
| Enter | Toggles the selection of the highlighted item without closing the combobox. |
### Data Attributes
-
- `data-invalid` is added to the combobox when the combobox is invalid.
- `data-open` is added to the combobox when the combobox is open.
- `data-closed` is added to the combobox when the combobox is closed.
@@ -672,7 +659,6 @@
There is a new root compomnent. Configurable props have been moved to the root component.
#### Deprecated Props
-
- You no longer need to style the popover open state with `:popover-open`. Instead, use the `data-open` attribute for it to style across browsers.
```css
@@ -695,7 +681,6 @@
### Docs Improvements
A couple of docs improvements have been made:
-
- The docs have been updated to reflect the new API.
- The headless docs no longer include styles in the examples. There is an example CSS section in each component page. If you do not find one, please open an issue on GitHub.
- Part of the Accordion and Modal docs have been simplified
@@ -704,7 +689,6 @@
- ### Modal API Changes (by [@thejackshelton](https://github.com/thejackshelton) in [#734](https://github.com/qwikifiers/qwik-ui/pull/734))
In a previous release, the following components have been deprecated:
-
- ModalHeader
- ModalContent
- ModalFooter
@@ -716,7 +700,6 @@
####
This is the main container of the modal, and now holds the major props and configuration. Examples include:
-
- 'bind:show'?: Signal;
- closeOnBackdropClick?: boolean;
- alert?: boolean;
@@ -744,7 +727,6 @@
This is a button that closes the modal when clicked.
- ### Select API Changes (by [@thejackshelton](https://github.com/thejackshelton) in [#724](https://github.com/qwikifiers/qwik-ui/pull/724))
-
- `` has been renamed to ``.
- `` has been renamed to ``.
@@ -806,7 +788,6 @@
The Accordion has been refactored from the ground up to be more accessible and performant.
#### Accordion.Root
-
- The `behavior="multi"` prop has been deprecated with `multiple` on the `` component.
- The default behavior is a single item open at a time.
- The `animated` prop has been removed. Animations are now automatically detected!
@@ -817,14 +798,12 @@
- Disable the entire accordion by using the `disabled` prop.
#### Accordion.Item
-
- Pass distinct values to the `` component with the `value` prop.
- Disable Accordion items by setting the `disabled` prop to true on the `` component.
For more information, please refer to the updated Accordion documentation.
### Collapsible
-
- The `onOpenChange# Changelog prop has been deprecated. Use the `onChange# Changelog prop instead.
For more information, please refer to the updated Collapsible documentation.
@@ -832,7 +811,6 @@
### Deprecated Components
In 0.4, we have deprecated the following headless components:
-
- Drawer
- Breadcrumb
- Action Button
@@ -974,7 +952,6 @@
- ## Select component hits beta! (by [@thejackshelton](https://github.com/thejackshelton) in [#637](https://github.com/qwikifiers/qwik-ui/pull/637))
## Features
-
- Accessible as a button that shows a list, following web a11y standards.
- Support for single selection.
- Controlled or uncontrolled.
@@ -991,7 +968,6 @@
- Supports a custom placeholder.
## Roadmap
-
- Opt-in native form support via a visually hidden select.
- RTL support.
- Multiple Selection and its respective keyboard interactions.
diff --git a/packages/kit-headless/package.json b/packages/kit-headless/package.json
index 859a9fa82..131e78ca8 100644
--- a/packages/kit-headless/package.json
+++ b/packages/kit-headless/package.json
@@ -1,6 +1,6 @@
{
"name": "@qwik-ui/headless",
- "version": "0.7.1",
+ "version": "0.7.2",
"description": "Qwik UI headless components library",
"publishConfig": {
"access": "public"