udp-stencil-component-library 25.18.1-beta.3 → 25.18.1-beta.5

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.
@@ -913,6 +913,10 @@ const AgGridBase = class {
913
913
  toggleLoadingOverlay: value => this.gridApi.setGridOption('loading', value),
914
914
  refreshCells: () => this.gridApi.refreshCells(),
915
915
  refreshClientSideRowModel: type => this.gridApi.refreshClientSideRowModel(type),
916
+ selectAll: (mode, source) => this.gridApi.selectAll(mode, source),
917
+ deselectAll: (mode, source) => this.gridApi.deselectAll(mode, source),
918
+ getServerSideSelectionState: () => this.gridApi.getServerSideSelectionState(),
919
+ setServerSideSelectionState: (state) => this.gridApi.setServerSideSelectionState(state),
916
920
  });
917
921
  }
918
922
  //set column defs
@@ -987,7 +991,7 @@ const AgGridBase = class {
987
991
  render() {
988
992
  var _a;
989
993
  const variantClass = `variant-${((_a = this.headerConfig) === null || _a === void 0 ? void 0 : _a.variant) || 'light'}`;
990
- return (h("div", { key: 'cf5b684a9218bebdc0e082c9e8099e23291cc979', class: variantClass, ref: el => (this.gridContainerEl = el) }, h("ghost-render", { key: '78587ed1b88f1f4b69dfe2a02224c189e4292604' }, h("div", { key: 'b96bd520d1d05937ee8983134e6142636ba9279c' }, h("udp-dialog", { key: 'd81b8b3c5bea8dd266d17712075b0bf366017772' }), h("udp-list-item", { key: '31301ad59e665083c44b9a3ffa363ed6b98cdead' }), h("hint-panel", { key: '5bd111e746467fa52e2a37d63b36bcd6eb6039d1' }))), h("div", { key: '0e718082d5bf98993a157e6cc07fa155b14df7b7', class: "grid-base-header" }, h("grid-header", { key: 'cace525815be069b3f517bd98e24106c9e4042c6', headerConfig: this.headerConfig, gridFunctions: this.gridFunctions, onHeaderAction: this.onHeaderAction }), h("div", { key: 'f99c0c791764ea58699967e3481b10cf0b1deca4', class: "action-bar", style: { viewTransitionName: `action-bar` } }, this.gridFunctionInstances.map(fn => { var _a; return (_a = fn.render) === null || _a === void 0 ? void 0 : _a.call(fn); }))), h("div", { key: 'af8230229a691ba6e2a1bf23aa55e150cabfadc5', id: "myNewGrid", ref: el => (this.gridEl = el), style: {
994
+ return (h("div", { key: '315a73b730d7d5d044b6bbf5f60a15e3b9582976', class: variantClass, ref: el => (this.gridContainerEl = el) }, h("ghost-render", { key: '466bccfb96cd71bb4d49cc8cea9293d76e8ef974' }, h("div", { key: '39de56375c5fc7ba94add149473348bf18060848' }, h("udp-dialog", { key: 'e1a537dae7065f89ccc1749c05ccd6f0043b54f7' }), h("udp-list-item", { key: '239b637a36feb02ec191203240b721a647997782' }), h("hint-panel", { key: 'd8ccc7f25ec0c3704b85496bed34a67b1e81f0cd' }))), h("div", { key: '74640f93605ecb67015daceb356c4b1fba30d069', class: "grid-base-header" }, h("grid-header", { key: 'a1eaa9bce2b9ce5f70631bb1d5e75270c00f96e8', headerConfig: this.headerConfig, gridFunctions: this.gridFunctions, onHeaderAction: this.onHeaderAction }), h("div", { key: '3edcb8130744665fd8570c738c8c61e51f3a096b', class: "action-bar", style: { viewTransitionName: `action-bar` } }, this.gridFunctionInstances.map(fn => { var _a; return (_a = fn.render) === null || _a === void 0 ? void 0 : _a.call(fn); }))), h("div", { key: '32f44119cc6bb374e08e3c5160b9d86d3f1d3c49', id: "myNewGrid", ref: el => (this.gridEl = el), style: {
991
995
  viewTransitionName: `my-new-grid`,
992
996
  } })));
993
997
  }