@simpleangularcontrols/sac-common 10.0.0-rc.10 → 10.0.0-rc.11

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.
@@ -6097,6 +6097,10 @@
6097
6097
  this.grid = grid;
6098
6098
  this.injector = injector;
6099
6099
  this.el = el;
6100
+ /**
6101
+ * Click on Column Element
6102
+ */
6103
+ this.rowclicked = new i0.EventEmitter();
6100
6104
  this.iconService = injector.get(SACICON_SERVICE, new SacDefaultIconService());
6101
6105
  }
6102
6106
  Object.defineProperty(SacGridColumnBaseCommon.prototype, "IconSortDown", {
@@ -6123,6 +6127,12 @@
6123
6127
  });
6124
6128
  // #endregion Public Getters And Setters
6125
6129
  // #region Public Methods
6130
+ /**
6131
+ * Method when Colument element is clicked. Triggers a RowClicked
6132
+ */
6133
+ SacGridColumnBaseCommon.prototype.ColumnClick = function () {
6134
+ this.rowclicked.emit();
6135
+ };
6126
6136
  /**
6127
6137
  * Indicates the direction of sorting. The possible values are `none`,`asc`,`desc`
6128
6138
  */
@@ -6210,7 +6220,8 @@
6210
6220
  sortkey: [{ type: i0.Input }],
6211
6221
  type: [{ type: i0.Input }],
6212
6222
  value: [{ type: i0.Input }],
6213
- width: [{ type: i0.Input }]
6223
+ width: [{ type: i0.Input }],
6224
+ rowclicked: [{ type: i0.Output }]
6214
6225
  };
6215
6226
 
6216
6227
  /**