@flyanra/vue-core 1.3.1 → 1.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyanra/vue-core",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "private": false,
5
5
  "description": "Source-distributed Vue component library for Vite and Nuxt consumers.",
6
6
  "sideEffects": false,
@@ -7,7 +7,7 @@
7
7
  }"
8
8
  >
9
9
  <slot name="trigger">
10
- <FlyIcon class="tw-cursor-pointer" :icon="mdiInformationSlabBoxOutline" />
10
+ <FlyIconV2 class="tw-cursor-pointer" :icon="IconMdiInformationSlabBoxOutline" />
11
11
  </slot>
12
12
  <template #content>
13
13
  <!-- eslint-disable-next-line vue/no-v-html -->
@@ -19,10 +19,11 @@
19
19
  </template>
20
20
 
21
21
  <script setup lang="ts">
22
- import { mdiInformationSlabBoxOutline } from '@mdi/js'
22
+ import IconMdiInformationSlabBoxOutline from '~icons/mdi/information-slab-box-outline'
23
+
23
24
  import DOMPurify from 'dompurify'
24
25
 
25
- import FlyIcon from '../../general/fly-icon/FlyIcon.vue'
26
+ import FlyIconV2 from '../../general/fly-icon-v2/FlyIconV2.vue'
26
27
 
27
28
  import FlyTooltip from './FlyTooltip.vue'
28
29