@softheon/armature 17.15.2 → 17.15.4
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 +4 -4
- package/esm2022/ag-grid-components/src/sof-table/sof-table.component.mjs +9 -3
- package/esm2022/lib/base-components/sof-badge/sof-badge.component.mjs +1 -1
- package/esm2022/lib/base-components/sof-links/sof-link.component.mjs +1 -1
- package/esm2022/lib/base-components/sof-utility-button/sof-utility-button.component.mjs +1 -1
- package/fesm2022/softheon-armature-ag-grid-components.mjs +8 -2
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-badge/sof-badge.component.d.ts +1 -2
- package/lib/base-components/sof-links/sof-link.component.d.ts +1 -2
- package/lib/base-components/sof-utility-button/sof-utility-button.component.d.ts +1 -2
- package/package.json +1 -1
|
@@ -4,9 +4,9 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
/** The Softheon Armature Table component */
|
|
5
5
|
export declare class SofTableComponent implements OnInit, OnChanges {
|
|
6
6
|
/** The language text or a key that will be shown in this component */
|
|
7
|
-
rowData: any
|
|
7
|
+
rowData: Array<any>;
|
|
8
8
|
/** Column Definitions: Defines & controls grid columns. */
|
|
9
|
-
colDefs: ColDef
|
|
9
|
+
colDefs: Array<ColDef>;
|
|
10
10
|
/** Size modes for table */
|
|
11
11
|
private sizeMode;
|
|
12
12
|
/** Pages sizes */
|
|
@@ -36,7 +36,7 @@ export declare class SofTableComponent implements OnInit, OnChanges {
|
|
|
36
36
|
/** the search input */
|
|
37
37
|
gridSearchTextInput: ElementRef<HTMLInputElement>;
|
|
38
38
|
/** Column names that should be filterable */
|
|
39
|
-
colFilters: SofTableFilter
|
|
39
|
+
colFilters: Array<SofTableFilter>;
|
|
40
40
|
/** Show filter */
|
|
41
41
|
showFilter: boolean;
|
|
42
42
|
/** Row Height for table */
|
|
@@ -64,7 +64,7 @@ export declare class SofTableComponent implements OnInit, OnChanges {
|
|
|
64
64
|
/** Filter Panel open state */
|
|
65
65
|
filterOpenState: boolean;
|
|
66
66
|
/** The list of filters and the selected values */
|
|
67
|
-
filterSelections: string
|
|
67
|
+
filterSelections: Array<Array<string>>;
|
|
68
68
|
/** mat-dialog */
|
|
69
69
|
private dialog;
|
|
70
70
|
/** On component init */
|