@revolist/revogrid 4.4.0-next.7 → 4.4.0-next.8

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.
@@ -3555,6 +3555,12 @@ const RevoGridComponent = /*@__PURE__*/ proxyCustomElement(class RevoGridCompone
3555
3555
  e.preventDefault();
3556
3556
  }
3557
3557
  }
3558
+ /**
3559
+ * Column format change will trigger column structure update
3560
+ */
3561
+ columnTypesChanged() {
3562
+ this.columnChanged(this.columns);
3563
+ }
3558
3564
  columnChanged(newVal = []) {
3559
3565
  // clear existing data
3560
3566
  this.dimensionProvider.dropColumns();
@@ -3790,6 +3796,7 @@ const RevoGridComponent = /*@__PURE__*/ proxyCustomElement(class RevoGridCompone
3790
3796
  }
3791
3797
  get element() { return this; }
3792
3798
  static get watchers() { return {
3799
+ "columnTypes": ["columnTypesChanged"],
3793
3800
  "columns": ["columnChanged"],
3794
3801
  "rowSize": ["rowSizeChanged"],
3795
3802
  "theme": ["themeChanged"],