@netgrif/components-core 6.2.7 → 6.2.8
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/tabs/classes/tab-view.mjs +2 -2
- package/esm2020/lib/tabs/interfaces.mjs +1 -1
- package/fesm2015/netgrif-components-core.mjs +2 -1
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +1 -1
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/tabs/interfaces.d.ts +2 -0
- package/package.json +1 -1
package/lib/tabs/interfaces.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
2
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
+
import { Filter } from "../filter/models/filter";
|
|
3
4
|
/**
|
|
4
5
|
* Stores information about content of one opened tab in tab view.
|
|
5
6
|
*
|
|
@@ -101,6 +102,7 @@ export interface InjectedTabData {
|
|
|
101
102
|
* stream emits when the tab is closed by any means except for the destruction of the parent component
|
|
102
103
|
*/
|
|
103
104
|
tabClosed$: Observable<void>;
|
|
105
|
+
loadFilter?: Filter;
|
|
104
106
|
}
|
|
105
107
|
/**
|
|
106
108
|
* Methods of parent tab view, that tabs can access.
|
package/package.json
CHANGED