@trudb/tru-common-lib 0.0.227 → 0.0.228
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/esm2020/lib/base-classes/tru-search-control-config-base.mjs +1 -1
- package/esm2020/lib/classes/tru-property-config-text.mjs +1 -1
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/base-classes/tru-search-control-config-base.d.ts +1 -2
- package/package.json +1 -1
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
|
-
import { TruPropertyConfigBase } from "./tru-property-config-base";
|
|
3
2
|
import { TruQueryPredicateManager } from "../classes/tru-query-predicate-manager";
|
|
4
3
|
export declare abstract class TruSearchControlConfigBase {
|
|
5
4
|
abstract label: string | undefined;
|
|
6
5
|
abstract propertyName: string | undefined;
|
|
7
6
|
abstract rootTable: string | undefined;
|
|
8
7
|
abstract propertyPath: string | undefined;
|
|
9
|
-
abstract get property(): TruPropertyConfigBase;
|
|
10
8
|
abstract queryPredicate: TruQueryPredicateManager;
|
|
9
|
+
abstract operator: string | undefined;
|
|
11
10
|
constructor();
|
|
12
11
|
protected choices?(): Observable<{
|
|
13
12
|
label: string;
|