wave-ui 3.9.1 → 3.9.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": "wave-ui",
3
- "version": "3.9.1",
3
+ "version": "3.9.2",
4
4
  "description": "An emerging UI framework for Vue.js (2 & 3) with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "homepage": "https://antoniandre.github.io/wave-ui",
@@ -572,7 +572,7 @@ export default {
572
572
  // (releasing the mouse on table header triggers a click event captured by the sorting feature)
573
573
  setTimeout(() => {
574
574
  // On Mouse up, emit an event containing all the new widths of the columns.
575
- const widths = [...this.$refs.colgroup.childNodes].map(column => column.style?.width || column.offsetWidth)
575
+ const widths = [...this.$refs.colgroup.children].map(column => column.style?.width || column.offsetWidth)
576
576
  this.$emit('column-resize', { index: this.colResizing.columnIndex, widths })
577
577
 
578
578
  this.colResizing.dragging = false