@everchron/ec-shards 5.0.81 → 5.0.83
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 +28 -28
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +28 -28
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +1 -1
- 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
|
@@ -210,6 +210,7 @@
|
|
|
210
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
|
+
debugger
|
|
213
214
|
columnCells.forEach(cell => {
|
|
214
215
|
// if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
|
|
215
216
|
// cell.parentElement.__vue__.setWidth(currentColumnWidth)
|
|
@@ -218,7 +219,6 @@
|
|
|
218
219
|
|
|
219
220
|
// To support resizing other column heads of the same type, to allow more than just the first column from being resizeable
|
|
220
221
|
let columnHeads = document.querySelectorAll('[data-headname="' + this.uniformName.toLowerCase() + '"]')
|
|
221
|
-
console.log('columnHeads:to:resize', columnHeads, '[data-headname="' + this.uniformName.toLowerCase() + '"]', this.beingResizedName)
|
|
222
222
|
columnHeads.forEach(cell => {
|
|
223
223
|
cell.style.width = `${ currentColumnWidth }px`
|
|
224
224
|
})
|