Skip to content

Commit df9ae78

Browse files
committed
VueUiMolecule allowed selection of datapoints located below dataLabels
1 parent e3bdbd8 commit df9ae78

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-data-ui",
33
"private": false,
4-
"version": "2.0.74",
4+
"version": "2.0.75",
55
"type": "module",
66
"description": "A user-empowering data visualization Vue components library",
77
"keywords": [

src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3325,7 +3325,7 @@ function treemapSelect(data) {
33253325
</template>
33263326
</Box>
33273327

3328-
<Box @copy="copyConfig(PROD_CONFIG.vue_ui_molecule)">
3328+
<Box open @copy="copyConfig(PROD_CONFIG.vue_ui_molecule)">
33293329
<template #title>
33303330
<BaseIcon name="chartCluster"/>
33313331
VueUiMolecule
@@ -4019,7 +4019,7 @@ function treemapSelect(data) {
40194019
</template>
40204020
</Box>
40214021

4022-
<Box open @copy="copyConfig(PROD_CONFIG.vue_ui_quadrant)">
4022+
<Box @copy="copyConfig(PROD_CONFIG.vue_ui_quadrant)">
40234023
<template #title>
40244024
<BaseIcon name="chartQuadrant" />
40254025
VueUiQuadrant

src/atoms/RecursiveLabels.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:fill="color"
99
:font-size="node.circleRadius"
1010
text-anchor="middle"
11-
style="opacity:0.8"
11+
style="opacity:0.8; pointer-events: none;"
1212
>
1313
{{ node.name }}
1414
</text>

src/components/vue-ui-molecule.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -605,10 +605,10 @@ defineExpose({
605605
:isCustom="moleculeConfig.style.chart.tooltip.customFormat && typeof moleculeConfig.style.chart.tooltip.customFormat === 'function'"
606606
>
607607
<template #tooltip-before>
608-
<slot name="tooltip-before" v-bind="{...dataTooltipSlot}"></slot>
608+
<slot name="tooltip-before" v-bind="{ ...dataTooltipSlot }"></slot>
609609
</template>
610610
<template #tooltip-after>
611-
<slot name="tooltip-after" v-bind="{...dataTooltipSlot}"></slot>
611+
<slot name="tooltip-after" v-bind="{ ...dataTooltipSlot }"></slot>
612612
</template>
613613
</Tooltip>
614614

@@ -620,10 +620,10 @@ defineExpose({
620620
:config="dataTable.config"
621621
:title="`${moleculeConfig.style.chart.title.text}${moleculeConfig.style.chart.title.subtitle.text ? ` : ${moleculeConfig.style.chart.title.subtitle.text}` : ''}`"
622622
>
623-
<template #th="{th}">
623+
<template #th="{ th }">
624624
<div v-html="th" style="display:flex;align-items:center"></div>
625625
</template>
626-
<template #td="{td}">
626+
<template #td="{ td }">
627627
{{ td.name || td }}
628628
</template>
629629
</DataTable>

0 commit comments

Comments
 (0)