@trudb/tru-common-lib 0.2.53 → 0.2.54
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.
|
@@ -4119,6 +4119,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
4119
4119
|
|
|
4120
4120
|
class TruSearchViewEventHandler {
|
|
4121
4121
|
search$ = new BehaviorSubject(null);
|
|
4122
|
+
searchFromParent$ = new BehaviorSubject(null);
|
|
4122
4123
|
filter$ = new BehaviorSubject(null);
|
|
4123
4124
|
search(query) {
|
|
4124
4125
|
this.search$.next(query);
|
|
@@ -4126,6 +4127,12 @@ class TruSearchViewEventHandler {
|
|
|
4126
4127
|
onSearch() {
|
|
4127
4128
|
return this.search$.asObservable();
|
|
4128
4129
|
}
|
|
4130
|
+
initiateChildSearch() {
|
|
4131
|
+
this.searchFromParent$.next(null);
|
|
4132
|
+
}
|
|
4133
|
+
onParentInitiatedSearch() {
|
|
4134
|
+
return this.searchFromParent$.asObservable();
|
|
4135
|
+
}
|
|
4129
4136
|
filter(query) {
|
|
4130
4137
|
this.filter$.next(query);
|
|
4131
4138
|
}
|
|
@@ -5998,7 +6005,6 @@ class TruDataGridPkeyCellRenderer {
|
|
|
5998
6005
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: TruDataGridPkeyCellRenderer, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "contextMenu", first: true, predicate: MatMenuTrigger, descendants: true }], ngImport: i0, template: `<div (contextmenu)="onRightClick($event)">{{displayValue}}
|
|
5999
6006
|
<div style="visibility: hidden; position: relative"
|
|
6000
6007
|
[style.left]="contextMenuPosition.x"
|
|
6001
|
-
[style.top]="contextMenuPosition.y"
|
|
6002
6008
|
[matMenuTriggerFor]="truDataGridContextMenu">
|
|
6003
6009
|
</div>
|
|
6004
6010
|
<mat-menu #truDataGridContextMenu="matMenu">
|
|
@@ -6029,7 +6035,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
6029
6035
|
], changeDetection: ChangeDetectionStrategy.OnPush, template: `<div (contextmenu)="onRightClick($event)">{{displayValue}}
|
|
6030
6036
|
<div style="visibility: hidden; position: relative"
|
|
6031
6037
|
[style.left]="contextMenuPosition.x"
|
|
6032
|
-
[style.top]="contextMenuPosition.y"
|
|
6033
6038
|
[matMenuTriggerFor]="truDataGridContextMenu">
|
|
6034
6039
|
</div>
|
|
6035
6040
|
<mat-menu #truDataGridContextMenu="matMenu">
|