Compare commits

...

3 Commits

Author SHA1 Message Date
Benjamin Canac
8632891323 chore(release): v3.0.0-beta.2 2025-02-28 17:27:17 +01:00
Benjamin Canac
0e3c63eb54 fix(useOverlay): missing imports 2025-02-28 17:17:45 +01:00
Benjamin Canac
c555c1640e fix(OverlayProvider): missing import 2025-02-28 17:17:36 +01:00
4 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## [3.0.0-beta.2](https://github.com/nuxt/ui/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2025-02-28)
### Bug Fixes
* **OverlayProvider:** missing import ([c555c16](https://github.com/nuxt/ui/commit/c555c1640eb9e9aca643d71aa02e2a659485672e))
* **useOverlay:** missing imports ([0e3c63e](https://github.com/nuxt/ui/commit/0e3c63eb543981835c56a3bfebe71c4534d3f973))
## [3.0.0-beta.1](https://github.com/nuxt/ui/compare/v3.0.0-alpha.13...v3.0.0-beta.1) (2025-02-28)
### ⚠ BREAKING CHANGES

View File

@@ -1,7 +1,7 @@
{
"name": "@nuxt/ui",
"description": "A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.",
"version": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"packageManager": "pnpm@10.5.2",
"repository": {
"type": "git",

View File

@@ -1,4 +1,5 @@
<script setup lang="ts">
import { computed } from 'vue'
import { useOverlay, type Overlay } from '../composables/useOverlay'
const { overlays, unMount, close } = useOverlay()

View File

@@ -1,4 +1,5 @@
import type { Component } from 'vue'
import { reactive, markRaw, shallowReactive } from 'vue'
import { createSharedComposable } from '@vueuse/core'
import type { ComponentProps } from 'vue-component-type-helpers'