ui-thing 0.1.27 → 0.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/comps.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.1.28
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.27...v0.1.28)
|
|
6
|
+
|
|
7
|
+
### 🏡 Chore
|
|
8
|
+
|
|
9
|
+
- Add updated dialog content close button styles ([3583a9d](https://github.com/BayBreezy/ui-thing-cli/commit/3583a9d))
|
|
10
|
+
|
|
11
|
+
### ❤️ Contributors
|
|
12
|
+
|
|
13
|
+
- Behon Baker ([@BayBreezy](http://github.com/BayBreezy))
|
|
14
|
+
|
|
3
15
|
## v0.1.27
|
|
4
16
|
|
|
5
17
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.1.26...v0.1.27)
|
package/dist/index.js
CHANGED
|
@@ -4833,9 +4833,9 @@ export default defineNuxtPlugin((nuxtApp) => {
|
|
|
4833
4833
|
</slot>
|
|
4834
4834
|
<UiDialogClose
|
|
4835
4835
|
v-if="!hideClose"
|
|
4836
|
-
class="absolute right-4 top-
|
|
4836
|
+
class="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground"
|
|
4837
4837
|
>
|
|
4838
|
-
<Icon name="lucide:x" class="h-4 w-4" />
|
|
4838
|
+
<Icon name="lucide:x" class="h-4 w-4" mode="svg" />
|
|
4839
4839
|
<span class="sr-only">Close</span>
|
|
4840
4840
|
</UiDialogClose>
|
|
4841
4841
|
</DialogContent>
|