@fy-/fws-vue 2.0.80 → 2.0.82

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.
@@ -1,6 +1,5 @@
1
1
  <script setup lang="ts">
2
2
  import { ref, onMounted, onUnmounted } from "vue";
3
- import { ExclamationCircleIcon } from "@heroicons/vue/24/solid";
4
3
  import { useEventBus } from "../../composables/event-bus";
5
4
  import DefaultModal from "./DefaultModal.vue";
6
5
 
@@ -46,21 +45,11 @@ onUnmounted(() => {
46
45
  <div
47
46
  class="relative bg-fv-neutral-200 rounded-lg shadow dark:bg-fv-neutral-900"
48
47
  >
49
- <div class="p-2 lg:p-5 text-center">
50
- <ExclamationCircleIcon
51
- class="mx-auto mb-2 text-fv-neutral-400 w-8 h-8 dark:text-fv-neutral-200"
52
- />
53
-
48
+ <div class="p-1.5 lg:p-5 text-center">
54
49
  <p
55
50
  class="mb-3 !text-left prose prose-invert prose-sm !min-w-full"
56
51
  v-html="
57
- desc
58
- ? '<h2>' + title
59
- ? title
60
- : '' + '</h2>' + desc
61
- : '<h2>' + title
62
- ? title
63
- : '' + '</h2>'
52
+ desc ? '<h2>' + title + '</h2>' + desc : '<h2>' + title + '</h2>'
64
53
  "
65
54
  ></p>
66
55
  <div class="flex justify-between gap-3 mt-4">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.0.80",
3
+ "version": "2.0.82",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {