@icij/murmur-next 4.0.14 → 4.0.15
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/dist/lib/murmur.js +3027 -3025
- package/dist/lib/murmur.js.map +1 -1
- package/dist/lib/murmur.umd.cjs +1 -1
- package/dist/lib/murmur.umd.cjs.map +1 -1
- package/lib/components/HapticCopy.vue +13 -11
- package/package.json +1 -2
|
@@ -238,17 +238,19 @@ export default defineComponent({
|
|
|
238
238
|
{{ label || t('haptic-copy.label') }}
|
|
239
239
|
</span>
|
|
240
240
|
</slot>
|
|
241
|
-
<
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
241
|
+
<teleport to="body">
|
|
242
|
+
<b-tooltip
|
|
243
|
+
v-if="!noTooltip"
|
|
244
|
+
ref="tooltip"
|
|
245
|
+
:model-value="showClipboardTooltip"
|
|
246
|
+
:placement="tooltipPlacement"
|
|
247
|
+
:target="buttonId"
|
|
248
|
+
manual
|
|
249
|
+
noninteractive
|
|
250
|
+
>
|
|
251
|
+
{{ tooltipContent }}
|
|
252
|
+
</b-tooltip>
|
|
253
|
+
</teleport>
|
|
252
254
|
</button>
|
|
253
255
|
</template>
|
|
254
256
|
<style lang="scss">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icij/murmur-next",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.15",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Murmur is ICIJ's Design System for Bootstrap 5 and Vue.js",
|
|
6
6
|
"author": "promera@icij.org",
|
|
@@ -77,7 +77,6 @@
|
|
|
77
77
|
"@storybook/addon-essentials": "^8.1.10",
|
|
78
78
|
"@storybook/addon-interactions": "^8.1.10",
|
|
79
79
|
"@storybook/addon-links": "^8.1.10",
|
|
80
|
-
"@storybook/addon-mdx-gfm": "^8.1.10",
|
|
81
80
|
"@storybook/addon-themes": "^8.1.10",
|
|
82
81
|
"@storybook/blocks": "^8.1.10",
|
|
83
82
|
"@storybook/vue3": "^8.1.10",
|