ados-rcm 1.0.332 → 1.0.333

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.
@@ -4,9 +4,6 @@ type TDefaultPredicate = {
4
4
  [key in TATableFilterType]: IATableFilter<any>[key]['predicate'];
5
5
  };
6
6
  export declare const defaultPredicate: TDefaultPredicate;
7
- type TKeyValuePairs<K> = {
8
- [P in keyof K]?: K[P];
9
- };
10
7
  /**
11
8
  * tableF : table functions
12
9
  */
@@ -21,6 +18,6 @@ export declare const tableF: {
21
18
  };
22
19
  downloadCsv: <T_3 extends IItem>(name: string, items: T_3[], defs: TATableDefs<T_3>) => void;
23
20
  getSingleFilterValue: <T_4 extends IItem>(filteration: TATableFilteration<T_4>) => string | undefined;
24
- getMultiFilterValues: <T_5 extends IItem, K extends IItem = any>(filteration: TATableFilteration<T_5, K>) => TKeyValuePairs<K>;
21
+ getMultiFilterValues: <T_5 extends IItem, K extends IItem = any>(filteration: TATableFilteration<T_5, K>) => Partial<K>;
25
22
  };
26
23
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ados-rcm",
3
- "version": "1.0.332",
3
+ "version": "1.0.333",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",