Skip to content

Commit dfd261d

Browse files
Version Packages (#1161)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a2b96c4 commit dfd261d

File tree

3 files changed

+7
-36
lines changed

3 files changed

+7
-36
lines changed

.changeset/itchy-bobcats-nail.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/kit-headless/CHANGELOG.md

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.7.4
4+
5+
### Patch Changes
6+
7+
- 🐞🩹 modal closing with a custom animation now always works, even if there are animated elements inside the modal (by [@VEH9](https://github.com/VEH9) in [#1159](https://github.com/qwikifiers/qwik-ui/pull/1159))
8+
39
## 0.7.3
410

511
### Patch Changes
@@ -55,7 +61,6 @@
5561
### Patch Changes
5662

5763
- Select fixes for: (by [@thejackshelton](https://github.com/thejackshelton) in [#1042](https://github.com/qwikifiers/qwik-ui/pull/1042))
58-
5964
- [#1001](https://github.com/qwikifiers/qwik-ui/issues/1001)
6065
- [#979](https://github.com/qwikifiers/qwik-ui/issues/979)
6166

@@ -72,7 +77,6 @@
7277
💡 Combobox inline mode allows for command palettes or other use cases where the search input is directly on the page.
7378

7479
🎠 Carousel fixes:
75-
7680
- [#1032](https://github.com/qwikifiers/qwik-ui/issues/1032)
7781
- [#1023](https://github.com/qwikifiers/qwik-ui/issues/1023)
7882
- [#1006](https://github.com/qwikifiers/qwik-ui/issues/1006)
@@ -102,27 +106,22 @@
102106
- # Combobox Improvements (by [@thejackshelton](https://github.com/thejackshelton) in [#968](https://github.com/qwikifiers/qwik-ui/pull/968))
103107

104108
## 🔄 Reactive Improvements
105-
106109
- Better handling of array-based values
107110
- Improved handling of initial and reactive values
108111

109112
## 🐛 Key Bug Fixes
110-
111113
- Fixed highlight jumping issues
112114
- Enhanced empty input handling
113115
- Better filtered item highlighting
114116

115117
## 🖱️ Interaction Enhancements
116-
117118
- Smoother scrolling experience
118119
- Improved keyboard and mouse coordination
119120

120121
## 🚀 Performance Optimizations
121-
122122
- More efficient item filtering
123123

124124
## 🧪 Reliability
125-
126125
- Added tests for reactivity handling, item unselection, and mouse-to-pointer interaction switching
127126
- Improved handling of edge cases in user interactions
128127

@@ -209,39 +208,30 @@
209208
```
210209

211210
### Anatomy Changes
212-
213211
1. **Combobox.Option** has been renamed to **Combobox.Item**:
214-
215212
- The item is no longer restricted to a string value; any UI can be placed inside the item.
216213
- 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)
217214

218215
2. **Combobox.Listbox** has been deprecated.
219216
3. **Combobox.ItemLabel** has been added:
220-
221217
- Move the string value that was once inside `Combobox.Option` into `Combobox.ItemLabel`. (required)
222218

223219
4. **Combobox.ItemIndicator** has been added:
224-
225220
- This component is used to render UI based on the selected state of the item. (optional)
226221

227222
5. **Combobox.Description** has been added:
228-
229223
- The text rendered inside the description component is displayed to screen readers as an accessible description of the combobox. (optional)
230224

231225
6. **Combobox.ErrorMessage** has been added:
232-
233226
- When this component is rendered, the Combobox will be marked as invalid. (optional)
234227

235228
7. **Combobox.HiddenNativeSelect** has been added:
236-
237229
- A native select element allows the submission of forms with the combobox. This component is visually hidden and hidden from screen readers. (optional)
238230

239231
8. **Combobox.Group** has been added:
240-
241232
- Used to visually group related items together. (optional)
242233

243234
9. **Combobox.GroupLabel** has been added:
244-
245235
- Provides an accessible name for the group. (optional)
246236

247237
10. **Combobox.Empty** has been added:
@@ -255,7 +245,6 @@
255245
The `optionRenderer# Changelog prop on the `Combobox.Listbox` component has been deprecated.
256246

257247
Instead:
258-
259248
1. pass a `<Combobox.Item />` as a child of the `<Combobox.Popover />` component.
260249
2. pass a `Combobox.ItemLabel` as a child of the `<Combobox.Item />` component.
261250

@@ -423,7 +412,6 @@
423412
#### Forms
424413

425414
The Combobox now supports form submissions. To enable this:
426-
427415
1. Add the `name` prop to the `Combobox.Root` component, with the name of the Combobox form field.
428416
2. Add the `<Combobox.HiddenNativeSelect />` component inside of the `<Combobox.Root />` component.
429417

@@ -469,7 +457,6 @@
469457
| Enter | Toggles the selection of the highlighted item without closing the combobox. |
470458

471459
### Data Attributes
472-
473460
- `data-invalid` is added to the combobox when the combobox is invalid.
474461
- `data-open` is added to the combobox when the combobox is open.
475462
- `data-closed` is added to the combobox when the combobox is closed.
@@ -684,7 +671,6 @@
684671
There is a new root compomnent. Configurable props have been moved to the root component.
685672

686673
#### Deprecated Props
687-
688674
- 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.
689675

690676
```css
@@ -707,7 +693,6 @@
707693
### Docs Improvements
708694

709695
A couple of docs improvements have been made:
710-
711696
- The docs have been updated to reflect the new API.
712697
- 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.
713698
- Part of the Accordion and Modal docs have been simplified
@@ -716,7 +701,6 @@
716701
- ### Modal API Changes (by [@thejackshelton](https://github.com/thejackshelton) in [#734](https://github.com/qwikifiers/qwik-ui/pull/734))
717702

718703
In a previous release, the following components have been deprecated:
719-
720704
- ModalHeader
721705
- ModalContent
722706
- ModalFooter
@@ -728,7 +712,6 @@
728712
#### <Modal.Root>
729713

730714
This is the main container of the modal, and now holds the major props and configuration. Examples include:
731-
732715
- 'bind:show'?: Signal<boolean>;
733716
- closeOnBackdropClick?: boolean;
734717
- alert?: boolean;
@@ -756,7 +739,6 @@
756739
This is a button that closes the modal when clicked.
757740

758741
- ### Select API Changes (by [@thejackshelton](https://github.com/thejackshelton) in [#724](https://github.com/qwikifiers/qwik-ui/pull/724))
759-
760742
- `<SelectOption />` has been renamed to `<Select.ItemLabel />`.
761743
- `<Select.Value />` has been renamed to `<Select.DisplayValue />`.
762744

@@ -818,7 +800,6 @@
818800
The Accordion has been refactored from the ground up to be more accessible and performant.
819801

820802
#### Accordion.Root
821-
822803
- The `behavior="multi"` prop has been deprecated with `multiple` on the `<Accordion.Root />` component.
823804
- The default behavior is a single item open at a time.
824805
- The `animated` prop has been removed. Animations are now automatically detected!
@@ -829,22 +810,19 @@
829810
- Disable the entire accordion by using the `disabled` prop.
830811

831812
#### Accordion.Item
832-
833813
- Pass distinct values to the `<Accordion.Item />` component with the `value` prop.
834814
- Disable Accordion items by setting the `disabled` prop to true on the `<Accordion.Item />` component.
835815

836816
For more information, please refer to the updated Accordion documentation.
837817

838818
### Collapsible
839-
840819
- The `onOpenChange# Changelog prop has been deprecated. Use the `onChange# Changelog prop instead.
841820

842821
For more information, please refer to the updated Collapsible documentation.
843822

844823
### Deprecated Components
845824

846825
In 0.4, we have deprecated the following headless components:
847-
848826
- Drawer
849827
- Breadcrumb
850828
- Action Button
@@ -986,7 +964,6 @@
986964
- ## Select component hits beta! (by [@thejackshelton](https://github.com/thejackshelton) in [#637](https://github.com/qwikifiers/qwik-ui/pull/637))
987965

988966
## Features
989-
990967
- Accessible as a button that shows a list, following web a11y standards.
991968
- Support for single selection.
992969
- Controlled or uncontrolled.
@@ -1003,7 +980,6 @@
1003980
- Supports a custom placeholder.
1004981

1005982
## Roadmap
1006-
1007983
- Opt-in native form support via a visually hidden select.
1008984
- RTL support.
1009985
- Multiple Selection and its respective keyboard interactions.

packages/kit-headless/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qwik-ui/headless",
3-
"version": "0.7.3",
3+
"version": "0.7.4",
44
"description": "Qwik UI headless components library",
55
"publishConfig": {
66
"access": "public"

0 commit comments

Comments
 (0)