@everchron/ec-shards 5.0.23 → 5.0.25
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 +31 -33
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +31 -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 +0 -3
package/package.json
CHANGED
|
@@ -173,12 +173,10 @@
|
|
|
173
173
|
},
|
|
174
174
|
|
|
175
175
|
setColumnCellsWidth(){
|
|
176
|
-
/*
|
|
177
176
|
if(!this.initialized) {
|
|
178
177
|
this.initialized = true
|
|
179
178
|
return
|
|
180
179
|
}
|
|
181
|
-
*/
|
|
182
180
|
|
|
183
181
|
const resizedEl = document.querySelector('[data-column="'+ this.computedId +'"]')
|
|
184
182
|
const currentColumnWidth = resizedEl.offsetWidth
|
|
@@ -190,7 +188,6 @@
|
|
|
190
188
|
columnCells.forEach(cell => {
|
|
191
189
|
// if (cell.parentElement && cell.parentElement.__vue__ && typeof cell.parentElement.__vue__.setWidth === 'function')
|
|
192
190
|
// cell.parentElement.__vue__.setWidth(currentColumnWidth)
|
|
193
|
-
console.log(`${ currentColumnWidth }px`)
|
|
194
191
|
cell.style.width = `${ currentColumnWidth }px`
|
|
195
192
|
})
|
|
196
193
|
|