@softheon/armature 17.35.0 → 17.36.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.
- package/ag-grid-components/src/sof-table/sof-table.component.d.ts +13 -1
- package/esm2022/ag-grid-components/src/sof-table/sof-table.component.mjs +86 -3
- package/esm2022/lib/base-components/sof-context/sof-context.component.mjs +3 -4
- package/esm2022/lib/base-components/sof-utility-button/sof-utility-button.component.mjs +3 -3
- package/fesm2022/softheon-armature-ag-grid-components.mjs +85 -2
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs +4 -5
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-utility-button/sof-utility-button.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges, WritableSignal } from '@angular/core';
|
|
2
|
-
import { ApplyColumnStateParams, ColDef, GridReadyEvent, PaginationChangedEvent } from "ag-grid-community";
|
|
2
|
+
import { ApplyColumnStateParams, ColDef, 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 {
|
|
@@ -165,6 +165,18 @@ export declare class SofTableComponent implements OnInit, OnChanges {
|
|
|
165
165
|
private setFilterSelections;
|
|
166
166
|
/** Gets the count of current filter selections */
|
|
167
167
|
private getFilterCount;
|
|
168
|
+
/**
|
|
169
|
+
* Function passed to AG Grid to ignore headers with blank headings when using arrow keys.
|
|
170
|
+
* @param params Navigation parameters.
|
|
171
|
+
* @returns Next column to focus or undefined if there is no next column to focus.
|
|
172
|
+
*/
|
|
173
|
+
navigateToNextHeader(params: NavigateToNextHeaderParams<any, any>): ((HeaderPosition | null) | undefined);
|
|
174
|
+
/**
|
|
175
|
+
* Function passed to AG Grid to ignore headers with blank headings when using tab key.
|
|
176
|
+
* @param params Navigation parameters.
|
|
177
|
+
* @returns Next column to focus or false if there is no next column to focus.
|
|
178
|
+
*/
|
|
179
|
+
tabToNextHeader(params: TabToNextHeaderParams<any, any>): ((HeaderPosition | boolean | null) | undefined);
|
|
168
180
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofTableComponent, never>;
|
|
169
181
|
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
182
|
}
|