From 0f29743e0b47be2baf3ed42852f65d02dece8c27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 18:38:56 -0600 Subject: [PATCH] Version Packages (#1014) Co-authored-by: github-actions[bot] --- .changeset/fluffy-turkeys-grow.md | 16 ---------------- .changeset/light-penguins-design.md | 5 ----- .changeset/slow-socks-smell.md | 15 --------------- .changeset/wild-tools-brush.md | 5 ----- packages/cli/CHANGELOG.md | 17 +++++++++++++++++ packages/cli/package.json | 4 ++-- packages/kit-headless/CHANGELOG.md | 18 ++++++++++++++++++ packages/kit-headless/package.json | 2 +- packages/kit-styled/CHANGELOG.md | 6 ++++++ packages/kit-styled/package.json | 4 ++-- pnpm-lock.yaml | 5 ++--- 11 files changed, 48 insertions(+), 49 deletions(-) delete mode 100644 .changeset/fluffy-turkeys-grow.md delete mode 100644 .changeset/light-penguins-design.md delete mode 100644 .changeset/slow-socks-smell.md delete mode 100644 .changeset/wild-tools-brush.md diff --git a/.changeset/fluffy-turkeys-grow.md b/.changeset/fluffy-turkeys-grow.md deleted file mode 100644 index cdb949d20..000000000 --- a/.changeset/fluffy-turkeys-grow.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -'qwik-ui': minor ---- - -FEAT: added a barrel file to the components root folder - -Now when you generate a component qwik-ui will create an `index.ts` file in your components folder which exports the newly generated components. - -Example: `qwik-ui add input` - -Generated output: - -```bash -src/components/index.ts # exports * from './input/input' -src/components/input/input.tsx -``` \ No newline at end of file diff --git a/.changeset/light-penguins-design.md b/.changeset/light-penguins-design.md deleted file mode 100644 index 7d463265d..000000000 --- a/.changeset/light-penguins-design.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@qwik-ui/styled': minor ---- - -FEAT: Added the following components: Dropdown, Toggle, ToggleGroup in #993 \ No newline at end of file diff --git a/.changeset/slow-socks-smell.md b/.changeset/slow-socks-smell.md deleted file mode 100644 index 3459ada38..000000000 --- a/.changeset/slow-socks-smell.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'@qwik-ui/headless': patch ---- - -🖼️ The Qwik UI site now uses OG info across platforms. - -🔍 The combobox now supports a "inline" mode. Opt-in to inline mode with replacing the `` component with ``, and adding `mode="inline"` to the `` component. - -💡 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) diff --git a/.changeset/wild-tools-brush.md b/.changeset/wild-tools-brush.md deleted file mode 100644 index 2ebd7ecb3..000000000 --- a/.changeset/wild-tools-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@qwik-ui/headless': patch ---- - -feat: carousel now supports mousewheel navigation in vertical mode diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index b0a304f73..bee407a75 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,22 @@ # qwik-ui +## 0.2.0 + +### Minor Changes + +- ✨ 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)) + + Now when you generate a component qwik-ui will create an `index.ts` file in your components folder which exports the newly generated components. + + Example: `qwik-ui add input` + + Generated output: + + ```bash + src/components/index.ts # exports * from './input/input' + src/components/input/input.tsx + ``` + ## 0.1.4 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index acc0b0621..a7d9dc1b7 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "qwik-ui", - "version": "0.1.4", + "version": "0.2.0", "publishConfig": { "access": "public" }, @@ -19,7 +19,7 @@ "yargs": "17.7.2" }, "devDependencies": { - "@qwik-ui/styled": "0.2.0" + "@qwik-ui/styled": "0.3.0" }, "type": "commonjs", "main": "./src/index.js", diff --git a/packages/kit-headless/CHANGELOG.md b/packages/kit-headless/CHANGELOG.md index ed80e3bfe..1d0cb69ed 100644 --- a/packages/kit-headless/CHANGELOG.md +++ b/packages/kit-headless/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.6.4 + +### Patch Changes + +- 🖼️ 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)) + + 🔍 The combobox now supports a "inline" mode. Opt-in to inline mode with replacing the `` component with ``, and adding `mode="inline"` to the `` component. + + 💡 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) + +- ✨ carousel now supports mousewheel navigation in vertical mode (by [@thejackshelton](https://github.com/thejackshelton) in [#1030](https://github.com/qwikifiers/qwik-ui/pull/1030)) + ## 0.6.3 ### Patch Changes diff --git a/packages/kit-headless/package.json b/packages/kit-headless/package.json index c83567145..fad0f0eae 100644 --- a/packages/kit-headless/package.json +++ b/packages/kit-headless/package.json @@ -1,6 +1,6 @@ { "name": "@qwik-ui/headless", - "version": "0.6.3", + "version": "0.6.4", "description": "Qwik UI headless components library", "publishConfig": { "access": "public" diff --git a/packages/kit-styled/CHANGELOG.md b/packages/kit-styled/CHANGELOG.md index 2db7a621d..da842da74 100644 --- a/packages/kit-styled/CHANGELOG.md +++ b/packages/kit-styled/CHANGELOG.md @@ -1,5 +1,11 @@ # @qwik-ui/styled +## 0.3.0 + +### Minor Changes + +- ✨ 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)) + ## 0.2.0 ### Minor Changes diff --git a/packages/kit-styled/package.json b/packages/kit-styled/package.json index acd4b772d..3fd2caf64 100644 --- a/packages/kit-styled/package.json +++ b/packages/kit-styled/package.json @@ -1,6 +1,6 @@ { "name": "@qwik-ui/styled", - "version": "0.2.0", + "version": "0.3.0", "description": "Qwik UI components library with styles", "publishConfig": { "access": "public" @@ -23,7 +23,7 @@ "@builder.io/qwik": ">=1.3.1" }, "devDependencies": { - "@qwik-ui/headless": "^0.6.0", + "@qwik-ui/headless": "^0.6.4", "@qwik-ui/utils": "0.3.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cce67c7e4..13aa54883 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -307,7 +307,7 @@ importers: version: 17.7.2 devDependencies: '@qwik-ui/styled': - specifier: 0.2.0 + specifier: 0.3.0 version: link:../kit-styled packages/kit-headless: @@ -338,7 +338,7 @@ importers: version: 1.9.0(@types/node@20.12.12)(sass@1.77.4) devDependencies: '@qwik-ui/headless': - specifier: ^0.6.0 + specifier: ^0.6.4 version: link:../kit-headless '@qwik-ui/utils': specifier: 0.3.1 @@ -1547,7 +1547,6 @@ packages: '@img/sharp-linux-x64@0.33.4': resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==} engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] os: [linux] '@img/sharp-linuxmusl-arm64@0.33.4':