@everchron/ec-shards 5.0.47 → 5.0.48
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 -3
package/package.json
CHANGED
|
@@ -179,7 +179,6 @@
|
|
|
179
179
|
},
|
|
180
180
|
|
|
181
181
|
setColumnCellsWidth(){
|
|
182
|
-
console.log('setColumnCellsWidth:initialized', this.initialized)
|
|
183
182
|
if(!this.initialized) {
|
|
184
183
|
this.initialized = true
|
|
185
184
|
return
|
|
@@ -246,10 +245,10 @@
|
|
|
246
245
|
|
|
247
246
|
mounted(){
|
|
248
247
|
if (this.resizable)
|
|
249
|
-
console.log('resizeObserver:mounted', this.resizable, this.resizeObserver, this.name)
|
|
248
|
+
console.log('resizeObserver:mounted:1', this.resizable, this.resizeObserver, this.name)
|
|
250
249
|
if(this.resizable && this.resizeObserver){
|
|
251
250
|
const resizeEl = document.querySelector('[data-column="'+ this.computedId +'"]')
|
|
252
|
-
console.log('resizeObserver:mounted', resizeEl, this.name)
|
|
251
|
+
console.log('resizeObserver:mounted:2', resizeEl, this.name)
|
|
253
252
|
this.resizeObserver.observe(resizeEl)
|
|
254
253
|
}
|
|
255
254
|
},
|