@everchron/ec-shards 5.0.80 → 5.0.81
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/ec-shards.common.js +27 -26
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +27 -26
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +2 -2
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/data-grid/data-grid-head-cell.vue +1 -1
package/package.json
CHANGED
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
const currentColumnWidth = resizedEl.offsetWidth
|
|
208
208
|
|
|
209
209
|
/** Emitted when the column has been resized. Returns the new width of the column in pixels. */
|
|
210
|
-
this.$emit('resizedWidth', { id: this.id, currentColumnWidth })
|
|
210
|
+
this.$emit('resizedWidth', { id: this.id, name: this.name, currentColumnWidth })
|
|
211
211
|
|
|
212
212
|
let columnCells = document.querySelectorAll('[data-column="' + this.name.toLowerCase().replace(' ', '-') + '-column-cell"]')
|
|
213
213
|
columnCells.forEach(cell => {
|