@everchron/ec-shards 5.0.23 → 5.0.25

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.23",
3
+ "version": "5.0.25",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -173,12 +173,10 @@
173
173
  },
174
174
 
175
175
  setColumnCellsWidth(){
176
- /*
177
176
  if(!this.initialized) {
178
177
  this.initialized = true
179
178
  return
180
179
  }
181
- */
182
180
 
183
181
  const resizedEl = document.querySelector('[data-column="'+ this.computedId +'"]')
184
182
  const currentColumnWidth = resizedEl.offsetWidth
@@ -190,7 +188,6 @@
190
188
  columnCells.forEach(cell => {
191
189
  // if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
192
190
  // cell.parentElement.__vue__.setWidth(currentColumnWidth)
193
- console.log(`${ currentColumnWidth }px`)
194
191
  cell.style.width = `${ currentColumnWidth }px`
195
192
  })
196
193