@everchron/ec-shards 5.0.21 → 5.0.23
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 +30 -30
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +30 -30
- 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 +2 -2
package/package.json
CHANGED
|
@@ -188,10 +188,10 @@
|
|
|
188
188
|
|
|
189
189
|
let columnCells = document.querySelectorAll('[data-column="' + this.name.toLowerCase() + '-column-cell"]')
|
|
190
190
|
columnCells.forEach(cell => {
|
|
191
|
-
console.log('cell', cell)
|
|
192
191
|
// if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
|
|
193
192
|
// cell.parentElement.__vue__.setWidth(currentColumnWidth)
|
|
194
|
-
|
|
193
|
+
console.log(`${ currentColumnWidth }px`)
|
|
194
|
+
cell.style.width = `${ currentColumnWidth }px`
|
|
195
195
|
})
|
|
196
196
|
|
|
197
197
|
if(this.fixedLeft)
|