@everchron/ec-shards 5.0.76 → 5.0.77
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 +36 -33
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +36 -33
- 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 +3 -1
package/package.json
CHANGED
|
@@ -217,17 +217,19 @@
|
|
|
217
217
|
})
|
|
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
221
|
console.log('beingResizedName', '[data-headname="' + this.uniformName.toLowerCase() + '"]')
|
|
221
222
|
let columnHeads = document.querySelectorAll('[data-headname="' + this.uniformName.toLowerCase() + '"]')
|
|
222
223
|
console.log('columnHeads', columnHeads)
|
|
223
224
|
columnHeads.forEach(cell => {
|
|
224
225
|
cell.style.width = `${ currentColumnWidth }px`
|
|
225
226
|
})
|
|
227
|
+
*/
|
|
226
228
|
|
|
227
229
|
if (this.fixedLeft)
|
|
228
230
|
this.setCellsFixedLeftOffset()
|
|
229
231
|
|
|
230
|
-
setTimeout(() => { this.beingResized = false }
|
|
232
|
+
setTimeout(() => { this.beingResized = false })
|
|
231
233
|
},
|
|
232
234
|
|
|
233
235
|
setCellsFixedLeftOffset(){
|