@everchron/ec-shards 5.0.14 → 5.0.16

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.14",
3
+ "version": "5.0.16",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -173,6 +173,7 @@
173
173
  },
174
174
 
175
175
  setColumnCellsWidth(){
176
+ console.log('setColumnCellsWidth', this.initialized)
176
177
  if(!this.initialized) {
177
178
  this.initialized = true
178
179
  return
@@ -186,9 +187,10 @@
186
187
 
187
188
  let columnCells = document.querySelectorAll('[data-column="' + this.name.toLowerCase() + '-column-cell"]')
188
189
  columnCells.forEach(cell => {
189
- console.log('cell', cell.parentElement.__vue__)
190
190
  if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
191
191
  cell.parentElement.__vue__.setWidth(currentColumnWidth)
192
+ else
193
+ setTimeout(() => { this.setColumnCellsWidth() }, 250)
192
194
  })
193
195
 
194
196
  if(this.fixedLeft)