Skip to content

Commit 0f29743

Browse files
Version Packages (#1014)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2666b78 commit 0f29743

File tree

11 files changed

+48
-49
lines changed

11 files changed

+48
-49
lines changed

.changeset/fluffy-turkeys-grow.md

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

.changeset/light-penguins-design.md

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

.changeset/slow-socks-smell.md

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

.changeset/wild-tools-brush.md

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

packages/cli/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# qwik-ui
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- ✨ added a barrel file to the components root folder (by [@shairez](https://github.com/shairez) in [#1015](https://github.com/qwikifiers/qwik-ui/pull/1015))
8+
9+
Now when you generate a component qwik-ui will create an `index.ts` file in your components folder which exports the newly generated components.
10+
11+
Example: `qwik-ui add input`
12+
13+
Generated output:
14+
15+
```bash
16+
src/components/index.ts # exports * from './input/input'
17+
src/components/input/input.tsx
18+
```
19+
320
## 0.1.4
421

522
### Patch Changes

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qwik-ui",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -19,7 +19,7 @@
1919
"yargs": "17.7.2"
2020
},
2121
"devDependencies": {
22-
"@qwik-ui/styled": "0.2.0"
22+
"@qwik-ui/styled": "0.3.0"
2323
},
2424
"type": "commonjs",
2525
"main": "./src/index.js",

packages/kit-headless/CHANGELOG.md

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

3+
## 0.6.4
4+
5+
### Patch Changes
6+
7+
- 🖼️ The Qwik UI site now uses OG info across platforms. (by [@thejackshelton](https://github.com/thejackshelton) in [#1037](https://github.com/qwikifiers/qwik-ui/pull/1037))
8+
9+
🔍 The combobox now supports a "inline" mode. Opt-in to inline mode with replacing the `<Combobox.Popover>` component with `<Combobox.Inline>`, and adding `mode="inline"` to the `<Combobox.Root>` component.
10+
11+
💡 Combobox inline mode allows for command palettes or other use cases where the search input is directly on the page.
12+
13+
🎠 Carousel fixes:
14+
15+
- [#1032](https://github.com/qwikifiers/qwik-ui/issues/1032)
16+
- [#1023](https://github.com/qwikifiers/qwik-ui/issues/1023)
17+
- [#1006](https://github.com/qwikifiers/qwik-ui/issues/1006)
18+
19+
- ✨ carousel now supports mousewheel navigation in vertical mode (by [@thejackshelton](https://github.com/thejackshelton) in [#1030](https://github.com/qwikifiers/qwik-ui/pull/1030))
20+
321
## 0.6.3
422

523
### Patch Changes

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.6.3",
3+
"version": "0.6.4",
44
"description": "Qwik UI headless components library",
55
"publishConfig": {
66
"access": "public"

packages/kit-styled/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @qwik-ui/styled
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- ✨ Added the following components: Dropdown, Toggle, ToggleGroup in #993 (by [@shairez](https://github.com/shairez) in [#1013](https://github.com/qwikifiers/qwik-ui/pull/1013))
8+
39
## 0.2.0
410

511
### Minor Changes

packages/kit-styled/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qwik-ui/styled",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Qwik UI components library with styles",
55
"publishConfig": {
66
"access": "public"
@@ -23,7 +23,7 @@
2323
"@builder.io/qwik": ">=1.3.1"
2424
},
2525
"devDependencies": {
26-
"@qwik-ui/headless": "^0.6.0",
26+
"@qwik-ui/headless": "^0.6.4",
2727
"@qwik-ui/utils": "0.3.1"
2828
}
2929
}

0 commit comments

Comments
 (0)