@everchron/ec-shards 5.0.16 → 5.0.18
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 +31 -34
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +31 -34
- 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 -2
package/package.json
CHANGED
|
@@ -186,11 +186,10 @@
|
|
|
186
186
|
this.$emit('resizedWidth', { id: this.id, currentColumnWidth })
|
|
187
187
|
|
|
188
188
|
let columnCells = document.querySelectorAll('[data-column="' + this.name.toLowerCase() + '-column-cell"]')
|
|
189
|
+
console.log('columnCells', columnCells)
|
|
189
190
|
columnCells.forEach(cell => {
|
|
190
191
|
if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
|
|
191
192
|
cell.parentElement.__vue__.setWidth(currentColumnWidth)
|
|
192
|
-
else
|
|
193
|
-
setTimeout(() => { this.setColumnCellsWidth() }, 250)
|
|
194
193
|
})
|
|
195
194
|
|
|
196
195
|
if(this.fixedLeft)
|