tuain-ng-forms-lib 17.1.15 → 17.1.16
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/esm2022/lib/classes/forms/table/table.mjs +5 -3
- package/esm2022/lib/components/elements/tables/table.component.mjs +3 -2
- package/fesm2022/tuain-ng-forms-lib.mjs +6 -3
- package/fesm2022/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/classes/forms/table/table.d.ts +3 -1
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ export declare class RecordTable extends FormElement {
|
|
|
23
23
|
private _appendPages;
|
|
24
24
|
private _actions;
|
|
25
25
|
private _actionsObj;
|
|
26
|
-
private
|
|
26
|
+
private _globalFilterString;
|
|
27
27
|
private globalFilterStrings;
|
|
28
28
|
private selectedRecords;
|
|
29
29
|
private restrictedId;
|
|
@@ -77,6 +77,8 @@ export declare class RecordTable extends FormElement {
|
|
|
77
77
|
get waiting(): boolean;
|
|
78
78
|
get clientPaging(): boolean;
|
|
79
79
|
get sortable(): boolean;
|
|
80
|
+
get globalFilterString(): string;
|
|
81
|
+
set globalFilterString(globalFilterString: string);
|
|
80
82
|
set globalSearch(globalSearch: boolean);
|
|
81
83
|
set tableRecords(tableRecords: TableRecordData[]);
|
|
82
84
|
set tableRecordObj(tableRecordObj: {});
|