@everchron/ec-shards 5.0.77 → 5.0.78

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.77",
3
+ "version": "5.0.78",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -178,7 +178,6 @@
178
178
  },
179
179
 
180
180
  beingResizedName(){
181
- console.log('beingResizedName', this.beingResized ? this.uniformName + '-noresize' : this.uniformName)
182
181
  return this.beingResized ? this.uniformName + '-noresize' : this.uniformName
183
182
  }
184
183
  },
@@ -217,14 +216,11 @@
217
216
  })
218
217
 
219
218
  // To support resizing other column heads of the same type, to allow more than just the first column from being resizeable
220
- /*
221
- console.log('beingResizedName', '[data-headname="' + this.uniformName.toLowerCase() + '"]')
222
219
  let columnHeads = document.querySelectorAll('[data-headname="' + this.uniformName.toLowerCase() + '"]')
223
- console.log('columnHeads', columnHeads)
220
+ console.log('columnHeads:to:resize', columnHeads, '[data-headname="' + this.uniformName.toLowerCase() + '"]', '(should be 1 if theres 2 and 1 is being resized by the User, only the other should be picked up)')
224
221
  columnHeads.forEach(cell => {
225
222
  cell.style.width = `${ currentColumnWidth }px`
226
223
  })
227
- */
228
224
 
229
225
  if (this.fixedLeft)
230
226
  this.setCellsFixedLeftOffset()