@everchron/ec-shards 5.0.73 → 5.0.74

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.73",
3
+ "version": "5.0.74",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -178,7 +178,7 @@
178
178
  },
179
179
 
180
180
  beingResizedName(){
181
- console.log('beingResizedName')
181
+ console.log('beingResizedName', this.beingResized ? this.uniformName + '-noresize' : this.uniformName)
182
182
  return this.beingResized ? this.uniformName + '-noresize' : this.uniformName
183
183
  }
184
184
  },
@@ -227,7 +227,7 @@
227
227
  if (this.fixedLeft)
228
228
  this.setCellsFixedLeftOffset()
229
229
 
230
- setTimeout(() => { this.beingResized = false }, 250)
230
+ setTimeout(() => { this.beingResized = false })
231
231
  },
232
232
 
233
233
  setCellsFixedLeftOffset(){
@@ -267,7 +267,7 @@
267
267
 
268
268
  mounted(){
269
269
  if(this.resizable && this.resizeObserver){
270
- const resizeEl = document.querySelector('[data-column="'+ this.computedId +'"]')
270
+ const resizeEl = document.querySelectorAll('[data-column="'+ this.computedId +'"]')
271
271
  this.resizeObserver.observe(resizeEl)
272
272
  }
273
273
  },