@softheon/armature 19.4.3 → 19.5.0

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.
@@ -1,5 +1,5 @@
1
1
  import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges, WritableSignal } from '@angular/core';
2
- import { ApplyColumnStateParams, ColDef, FilterModel, GridReadyEvent, PaginationChangedEvent } from "ag-grid-community";
2
+ import { ApplyColumnStateParams, ColDef, FilterModel, GridReadyEvent, HeaderPosition, NavigateToNextHeaderParams, PaginationChangedEvent, TabToNextHeaderParams } from "ag-grid-community";
3
3
  import * as i0 from "@angular/core";
4
4
  /** The Softheon Armature Table component */
5
5
  export declare class SofTableComponent implements OnInit, OnChanges {
@@ -89,6 +89,10 @@ export declare class SofTableComponent implements OnInit, OnChanges {
89
89
  private dialog;
90
90
  /** Translation service */
91
91
  private translateService;
92
+ /**
93
+ * The id of the filter fieldset.
94
+ */
95
+ filterFieldSetId: string;
92
96
  /** On component init */
93
97
  ngOnInit(): void;
94
98
  /**
@@ -165,6 +169,18 @@ export declare class SofTableComponent implements OnInit, OnChanges {
165
169
  private setFilterSelections;
166
170
  /** Gets the count of current filter selections */
167
171
  private getFilterCount;
172
+ /**
173
+ * Function passed to AG Grid to ignore headers with blank headings when using arrow keys.
174
+ * @param params Navigation parameters.
175
+ * @returns Next column to focus or undefined if there is no next column to focus.
176
+ */
177
+ navigateToNextHeader(params: NavigateToNextHeaderParams<any, any>): ((HeaderPosition | null) | undefined);
178
+ /**
179
+ * Function passed to AG Grid to ignore headers with blank headings when using tab key.
180
+ * @param params Navigation parameters.
181
+ * @returns Next column to focus or false if there is no next column to focus.
182
+ */
183
+ tabToNextHeader(params: TabToNextHeaderParams<any, any>): ((HeaderPosition | boolean | null) | undefined);
168
184
  static ɵfac: i0.ɵɵFactoryDeclaration<SofTableComponent, never>;
169
185
  static ɵcmp: i0.ɵɵComponentDeclaration<SofTableComponent, "sof-table", never, { "rowData": { "alias": "rowData"; "required": false; }; "colDefs": { "alias": "colDefs"; "required": false; }; "sizeMode": { "alias": "sizeMode"; "required": false; }; "paginationPageSizeSelector": { "alias": "paginationPageSizeSelector"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "enableFilter": { "alias": "enableFilter"; "required": false; }; "enableColumnOptions": { "alias": "enableColumnOptions"; "required": false; }; "enableExport": { "alias": "enableExport"; "required": false; }; "showSaveColumnOptionsText": { "alias": "showSaveColumnOptionsText"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "savedColumnState": { "alias": "savedColumnState"; "required": false; }; "initialFilterModel": { "alias": "initialFilterModel"; "required": false; }; }, { "updatedColumnState": "updatedColumnState"; "filteredRowDataForExport": "filteredRowDataForExport"; }, never, ["[sof-table-right-buttons]"], false, never>;
170
186
  }