@everchron/ec-shards 5.0.68 → 5.0.69
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 -32
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +29 -32
- 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 -5
package/package.json
CHANGED
|
@@ -211,11 +211,8 @@
|
|
|
211
211
|
cell.style.width = `${ currentColumnWidth }px`
|
|
212
212
|
})
|
|
213
213
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
headName = headName.substring(0, lastIndex)
|
|
217
|
-
console.log('headName', '[data-headname=' + headName + '-column-head]')
|
|
218
|
-
let columnHeads = document.querySelectorAll('[data-headname="documents-' + headName + '-column-head"]')
|
|
214
|
+
console.log('headName', this.uniformName.toLowerCase() + '-column-head')
|
|
215
|
+
let columnHeads = document.querySelectorAll('[data-headname="' + this.uniformName.toLowerCase() + '-column-head"]')
|
|
219
216
|
console.log('columnHeads', columnHeads)
|
|
220
217
|
columnHeads.forEach(cell => {
|
|
221
218
|
// if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
|