@everchron/ec-shards 5.0.19 → 5.0.21

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": "@everchron/ec-shards",
3
- "version": "5.0.19",
3
+ "version": "5.0.21",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -188,8 +188,10 @@
188
188
 
189
189
  let columnCells = document.querySelectorAll('[data-column="' + this.name.toLowerCase() + '-column-cell"]')
190
190
  columnCells.forEach(cell => {
191
- if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
192
- cell.parentElement.__vue__.setWidth(currentColumnWidth)
191
+ console.log('cell', cell)
192
+ // if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
193
+ // cell.parentElement.__vue__.setWidth(currentColumnWidth)
194
+ cell.style.width = currentColumnWidth
193
195
  })
194
196
 
195
197
  if(this.fixedLeft)