@icij/murmur-next 4.1.3 → 4.1.5

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.
@@ -438,7 +438,7 @@ export default defineComponent({
438
438
  class="column-chart__columns__item__placeholder"
439
439
  />
440
440
  <rect
441
- :height="bar.height"
441
+ :height="Math.max(bar.height, 0.1)"
442
442
  :width="bar.width"
443
443
  :y="bar.y"
444
444
  :id="columnUniqueId(index)"
@@ -513,5 +513,9 @@ export default defineComponent({
513
513
  display: none;
514
514
  }
515
515
  }
516
+
517
+ &__tooltip {
518
+ pointer-events: none;
519
+ }
516
520
  }
517
521
  </style>
@@ -21,10 +21,6 @@ import { useQueryObserver } from '@/composables/queryObserver.js'
21
21
 
22
22
  export default defineComponent({
23
23
  name: 'StackedColumnChart',
24
- // directives: {
25
- // 'b-tooltip': VBTooltip
26
- // },
27
- //mixins: [chart],
28
24
  props: {
29
25
  /**
30
26
  * Field of each object containing data (for each group)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icij/murmur-next",
3
- "version": "4.1.3",
3
+ "version": "4.1.5",
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",