@everchron/ec-shards 5.0.81 → 5.0.82

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.81",
3
+ "version": "5.0.82",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -218,7 +218,6 @@
218
218
 
219
219
  // To support resizing other column heads of the same type, to allow more than just the first column from being resizeable
220
220
  let columnHeads = document.querySelectorAll('[data-headname="' + this.uniformName.toLowerCase() + '"]')
221
- console.log('columnHeads:to:resize', columnHeads, '[data-headname="' + this.uniformName.toLowerCase() + '"]', this.beingResizedName)
222
221
  columnHeads.forEach(cell => {
223
222
  cell.style.width = `${ currentColumnWidth }px`
224
223
  })