@trudb/tru-common-lib 0.0.191 → 0.0.196
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/components/desktop/menubar/tru-desktop-menubar.mjs +5 -3
- package/esm2020/lib/components/toolbar/context-filter/tru-toolbar-context-filter.mjs +5 -6
- package/fesm2015/trudb-tru-common-lib.mjs +8 -7
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +8 -7
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/components/desktop/menubar/tru-desktop-menubar.d.ts +1 -0
- package/lib/components/toolbar/context-filter/tru-toolbar-context-filter.d.ts +1 -2
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export declare class TruDesktopMenubar implements OnInit {
|
|
|
5
5
|
constructor();
|
|
6
6
|
options: any | null;
|
|
7
7
|
configs: any | null;
|
|
8
|
+
filters: Array<any>;
|
|
8
9
|
openWindow: (event: any, windowOverrides: any) => void;
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruDesktopMenubar, never>;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TruToolbarContextFilter implements OnInit {
|
|
4
|
-
config: [] | null;
|
|
5
4
|
filters: Array<any>;
|
|
6
5
|
selected: any;
|
|
7
6
|
constructor();
|
|
8
7
|
ngOnInit(): void;
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruToolbarContextFilter, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TruToolbarContextFilter, "tru-toolbar-context-filter", never, { "
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TruToolbarContextFilter, "tru-toolbar-context-filter", never, { "filters": "filters"; }, {}, never, never, false, never>;
|
|
11
10
|
}
|