@everchron/ec-shards 5.0.67 → 5.0.68
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 +28 -30
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +28 -30
- 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 +1 -3
package/package.json
CHANGED
|
@@ -211,12 +211,10 @@
|
|
|
211
211
|
cell.style.width = `${ currentColumnWidth }px`
|
|
212
212
|
})
|
|
213
213
|
|
|
214
|
-
let headName = this.
|
|
215
|
-
debugger
|
|
214
|
+
let headName = this.uniformName.toLowerCase().replace(' ', '-')
|
|
216
215
|
const lastIndex = headName.lastIndexOf('-')
|
|
217
216
|
headName = headName.substring(0, lastIndex)
|
|
218
217
|
console.log('headName', '[data-headname=' + headName + '-column-head]')
|
|
219
|
-
console.log('computedId', this.computedId)
|
|
220
218
|
let columnHeads = document.querySelectorAll('[data-headname="documents-' + headName + '-column-head"]')
|
|
221
219
|
console.log('columnHeads', columnHeads)
|
|
222
220
|
columnHeads.forEach(cell => {
|