@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
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
}"
|
|
8
8
|
>
|
|
9
9
|
<slot name="trigger">
|
|
10
|
-
<
|
|
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
|
|
22
|
+
import IconMdiInformationSlabBoxOutline from '~icons/mdi/information-slab-box-outline'
|
|
23
|
+
|
|
23
24
|
import DOMPurify from 'dompurify'
|
|
24
25
|
|
|
25
|
-
import
|
|
26
|
+
import FlyIconV2 from '../../general/fly-icon-v2/FlyIconV2.vue'
|
|
26
27
|
|
|
27
28
|
import FlyTooltip from './FlyTooltip.vue'
|
|
28
29
|
|