diff --git a/.changeset/config.json b/.changeset/config.json index 092f6fb..df9d514 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -5,7 +5,7 @@ "fixed": [], "linked": [], "access": "public", - "baseBranch": "main", + "baseBranch": "next", "updateInternalDependencies": "patch", "ignore": ["playground"] } diff --git a/.changeset/good-ways-obey.md b/.changeset/good-ways-obey.md new file mode 100644 index 0000000..69cfa9b --- /dev/null +++ b/.changeset/good-ways-obey.md @@ -0,0 +1,5 @@ +--- +"vaul-vue": minor +--- + +migrate from Radix Vue to Reka UI diff --git a/.changeset/poor-buses-buy.md b/.changeset/poor-buses-buy.md new file mode 100644 index 0000000..e5cc287 --- /dev/null +++ b/.changeset/poor-buses-buy.md @@ -0,0 +1,5 @@ +--- +"vaul-vue": patch +--- + +chore: update readme diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 0000000..93d7ecd --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,12 @@ +{ + "mode": "pre", + "tag": "next", + "initialVersions": { + "vaul-vue": "0.2.1", + "playground": "0.0.0" + }, + "changesets": [ + "good-ways-obey", + "poor-buses-buy" + ] +} diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index d255142..8719e64 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -2,7 +2,7 @@ name: Release on: push: branches: - - main + - next concurrency: ${{ github.workflow }}-${{ github.ref }} jobs: release: diff --git a/README.md b/README.md index 0ec3724..628c440 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Vaul Vue Vaul Vue is an unstyled drawer component for Vue that can be used as a Dialog replacement on tablet and mobile devices. -It uses [Radix Vue's Dialog primitive](https://www.radix-vue.com/components/dialog.html) under the hood and is a feature complete port of [Emil Kowalski's Vaul library](https://github.com/emilkowalski/vaul) (built for React). +It uses [Reka UI's Dialog primitive](https://www.reka-ui.com/docs/components/dialog) under the hood and is a feature complete port of [Emil Kowalski's Vaul library](https://github.com/emilkowalski/vaul) (built for React). ## Installation @@ -42,4 +42,4 @@ import { DrawerContent, DrawerOverlay, DrawerPortal, DrawerRoot, DrawerTrigger } All credits go to these open-source works and resources - Major credits go to [Emil Kowalski](https://emilkowal.ski/) for the original [Vaul library](https://github.com/emilkowalski/vaul). -- [Radix Vue](https://www.radix-vue.com/) for the Dialog primitive used under the hood. +- [Reka UI](https://www.reka-ui.com/) for the Dialog primitive used under the hood. diff --git a/packages/vaul-vue/CHANGELOG.md b/packages/vaul-vue/CHANGELOG.md index 633e745..7154b6e 100644 --- a/packages/vaul-vue/CHANGELOG.md +++ b/packages/vaul-vue/CHANGELOG.md @@ -1,5 +1,17 @@ # vaul-vue +## 0.3.0-next.1 + +### Patch Changes + +- 6f906b7: chore: update readme + +## 0.3.0-next.0 + +### Minor Changes + +- migrate from Radix Vue to Reka UI + ## 0.2.1 ### Patch Changes diff --git a/packages/vaul-vue/README.md b/packages/vaul-vue/README.md index 0ec3724..628c440 100644 --- a/packages/vaul-vue/README.md +++ b/packages/vaul-vue/README.md @@ -1,7 +1,7 @@ # Vaul Vue Vaul Vue is an unstyled drawer component for Vue that can be used as a Dialog replacement on tablet and mobile devices. -It uses [Radix Vue's Dialog primitive](https://www.radix-vue.com/components/dialog.html) under the hood and is a feature complete port of [Emil Kowalski's Vaul library](https://github.com/emilkowalski/vaul) (built for React). +It uses [Reka UI's Dialog primitive](https://www.reka-ui.com/docs/components/dialog) under the hood and is a feature complete port of [Emil Kowalski's Vaul library](https://github.com/emilkowalski/vaul) (built for React). ## Installation @@ -42,4 +42,4 @@ import { DrawerContent, DrawerOverlay, DrawerPortal, DrawerRoot, DrawerTrigger } All credits go to these open-source works and resources - Major credits go to [Emil Kowalski](https://emilkowal.ski/) for the original [Vaul library](https://github.com/emilkowalski/vaul). -- [Radix Vue](https://www.radix-vue.com/) for the Dialog primitive used under the hood. +- [Reka UI](https://www.reka-ui.com/) for the Dialog primitive used under the hood. diff --git a/packages/vaul-vue/package.json b/packages/vaul-vue/package.json index f653e3c..a2b0ed7 100644 --- a/packages/vaul-vue/package.json +++ b/packages/vaul-vue/package.json @@ -1,7 +1,7 @@ { "name": "vaul-vue", "type": "module", - "version": "0.2.1", + "version": "0.3.0-next.1", "repository": "https://github.com/Elliot-Alexander/vaul-vue", "keywords": [ "vue", @@ -36,12 +36,12 @@ "release": "pnpm run build-only" }, "peerDependencies": { - "radix-vue": "^1.4.0", + "reka-ui": "^1.0.0-alpha.7", "vue": "^3.3.0" }, "dependencies": { "@vueuse/core": "^10.8.0", - "radix-vue": "^1.4.9", + "reka-ui": "^1.0.0-alpha.7", "vue": "^3.4.5" }, "devDependencies": { diff --git a/packages/vaul-vue/src/DrawerContent.vue b/packages/vaul-vue/src/DrawerContent.vue index 9a7103b..9aaeaf4 100644 --- a/packages/vaul-vue/src/DrawerContent.vue +++ b/packages/vaul-vue/src/DrawerContent.vue @@ -1,6 +1,6 @@