aio-table 11.2.0 → 11.2.1
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/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export type I_table_paging = UT.I_paging;
|
|
|
18
18
|
export type I_table_sort<T> = UT.I_sort<T>;
|
|
19
19
|
export type I_table_filter = UT.I_filter;
|
|
20
20
|
export type I_table_filter_item = UT.I_filter_item;
|
|
21
|
-
export type I_table_filter_saved_item = UT.
|
|
21
|
+
export type I_table_filter_saved_item = UT.I_filter_collection;
|
|
22
22
|
export type I_table_column<T> = {
|
|
23
23
|
title?: any;
|
|
24
24
|
sort?: true | I_table_sort<T>;
|
|
@@ -27,7 +27,7 @@ export type I_table_column<T> = {
|
|
|
27
27
|
operators?: UT.I_filter_operator[];
|
|
28
28
|
options?: {
|
|
29
29
|
text: string;
|
|
30
|
-
value:
|
|
30
|
+
value: any;
|
|
31
31
|
}[];
|
|
32
32
|
type?: I_table_column<any>["type"];
|
|
33
33
|
};
|