@softheon/armature 19.11.1 → 19.12.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 +9 -11
- package/fesm2022/softheon-armature-ag-grid-components.mjs +15 -15
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs +141 -37
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/directives/text-overflow-ellipsis-tooltip.directive.d.ts +59 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -12,14 +12,16 @@ export declare class SofTableComponent implements OnInit, OnChanges {
|
|
|
12
12
|
sizeMode: 'Compact' | 'Roomy' | 'Default';
|
|
13
13
|
/** Pages sizes */
|
|
14
14
|
paginationPageSizeSelector: Array<number>;
|
|
15
|
-
/** Enable search */
|
|
15
|
+
/** Enable search, default: true */
|
|
16
16
|
enableSearch: boolean;
|
|
17
|
-
/** Enable custom text filter dropdowns */
|
|
17
|
+
/** Enable custom text filter dropdowns, default: true */
|
|
18
18
|
enableFilter: boolean;
|
|
19
|
-
/** Enable column options modal selection */
|
|
19
|
+
/** Enable column options modal selection, default: true */
|
|
20
20
|
enableColumnOptions: boolean;
|
|
21
|
-
/** Enable export button to output filtered row data */
|
|
21
|
+
/** Enable export button to output filtered row data, default: false */
|
|
22
22
|
enableExport: boolean;
|
|
23
|
+
/** Enable pagination, default: true */
|
|
24
|
+
enablePagination: boolean;
|
|
23
25
|
/**
|
|
24
26
|
* To display the text on the column options modal, which states -
|
|
25
27
|
* `"Options will be saved for the next time you log in."`
|
|
@@ -96,10 +98,7 @@ export declare class SofTableComponent implements OnInit, OnChanges {
|
|
|
96
98
|
private translateService;
|
|
97
99
|
/** Inject angular's document reference */
|
|
98
100
|
private document;
|
|
99
|
-
/**
|
|
100
|
-
*
|
|
101
|
-
* The id of the filter fieldset.
|
|
102
|
-
*/
|
|
101
|
+
/** The id of the filter fieldset */
|
|
103
102
|
filterFieldSetId: string;
|
|
104
103
|
/** On component init */
|
|
105
104
|
ngOnInit(): void;
|
|
@@ -142,9 +141,8 @@ export declare class SofTableComponent implements OnInit, OnChanges {
|
|
|
142
141
|
onFilterChanged(): void;
|
|
143
142
|
/** When a mat-select dropdown within the filter is opened
|
|
144
143
|
* @param opened sets whether the selected filter has been opened
|
|
145
|
-
* @param index to set the index of which filter selection is opened
|
|
146
144
|
*/
|
|
147
|
-
onFilterSelectOpened(opened: boolean
|
|
145
|
+
onFilterSelectOpened(opened: boolean): void;
|
|
148
146
|
/** Generated text for showing pages in format: 1-11 of 11 */
|
|
149
147
|
private handlePageChangeText;
|
|
150
148
|
/**
|
|
@@ -197,7 +195,7 @@ export declare class SofTableComponent implements OnInit, OnChanges {
|
|
|
197
195
|
*/
|
|
198
196
|
tabToNextHeader(params: TabToNextHeaderParams<any, any>): ((HeaderPosition | boolean | null) | undefined);
|
|
199
197
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofTableComponent, never>;
|
|
200
|
-
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>;
|
|
198
|
+
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; }; "enablePagination": { "alias": "enablePagination"; "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>;
|
|
201
199
|
}
|
|
202
200
|
export interface ExportTableData {
|
|
203
201
|
tableHeaders?: Array<KeyValPair>;
|