@everchron/ec-shards 5.0.76 → 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/dist/ec-shards.common.js +29 -31
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +29 -31
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +1 -1
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/data-grid/data-grid-head-cell.vue +2 -4
package/package.json
CHANGED
|
@@ -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,9 +216,8 @@
|
|
|
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
|
-
console.log('beingResizedName', '[data-headname="' + this.uniformName.toLowerCase() + '"]')
|
|
221
219
|
let columnHeads = document.querySelectorAll('[data-headname="' + this.uniformName.toLowerCase() + '"]')
|
|
222
|
-
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)')
|
|
223
221
|
columnHeads.forEach(cell => {
|
|
224
222
|
cell.style.width = `${ currentColumnWidth }px`
|
|
225
223
|
})
|
|
@@ -227,7 +225,7 @@
|
|
|
227
225
|
if (this.fixedLeft)
|
|
228
226
|
this.setCellsFixedLeftOffset()
|
|
229
227
|
|
|
230
|
-
setTimeout(() => { this.beingResized = false }
|
|
228
|
+
setTimeout(() => { this.beingResized = false })
|
|
231
229
|
},
|
|
232
230
|
|
|
233
231
|
setCellsFixedLeftOffset(){
|