@trudb/tru-common-lib 0.0.257 → 0.0.259

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.
@@ -11,7 +11,7 @@ export declare abstract class TruSearchControlBase {
11
11
  };
12
12
  abstract config: any;
13
13
  abstract label: string | undefined;
14
- abstract operator: string;
14
+ abstract operator: string | undefined;
15
15
  abstract operatorIcon: string;
16
16
  abstract operatorIconTitle: string;
17
17
  abstract onOperatorIconClick(): void;
@@ -5,7 +5,6 @@ export declare class TruQueryPredicateManager {
5
5
  _predicateName: string;
6
6
  _predicateMap: any;
7
7
  constructor(propertyQueryPath: Array<string>, predicateName: string, predicateMap: any);
8
- private setPredicate;
9
8
  /**
10
9
  * Returns a new query predicate.
11
10
  *
@@ -32,4 +31,6 @@ export declare class TruQueryPredicateManager {
32
31
  * @param {*} value - Literal value.
33
32
  */
34
33
  set: (fieldOrPredicate: string, operator: string, value: any, overQuoted?: boolean) => void;
34
+ setPredicate: (queryPredicate: TruPredicate | null) => void;
35
+ createPredicate: (fieldOrPredicate: string, operator: string, value: any, overQuoted?: boolean) => void;
35
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trudb/tru-common-lib",
3
- "version": "0.0.257",
3
+ "version": "0.0.259",
4
4
  "type": "module",
5
5
  "peerDependencies": {},
6
6
  "dependencies": {