@paperless/angular 0.1.0-alpha.310 → 0.1.0-alpha.311
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/modules/overlay/overlay.ref.mjs +4 -1
- package/fesm2015/paperless-angular.mjs +3 -1
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +3 -1
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/overlay/overlay.ref.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray } from '@angular/f
|
|
|
4
4
|
import * as i1$1 from '@angular/common';
|
|
5
5
|
import { CommonModule, DatePipe, CurrencyPipe } from '@angular/common';
|
|
6
6
|
import { __decorate } from 'tslib';
|
|
7
|
-
import { fromEvent, timer, BehaviorSubject, distinctUntilChanged, map as map$1 } from 'rxjs';
|
|
7
|
+
import { fromEvent, Subject, timer, BehaviorSubject, distinctUntilChanged, map as map$1 } from 'rxjs';
|
|
8
8
|
import { ObserversModule } from '@angular/cdk/observers';
|
|
9
9
|
import * as i1 from '@angular/cdk/overlay';
|
|
10
10
|
import { OverlayModule as OverlayModule$1, OverlayConfig } from '@angular/cdk/overlay';
|
|
@@ -1683,9 +1683,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImpor
|
|
|
1683
1683
|
class OverlayRef {
|
|
1684
1684
|
constructor(_overlay) {
|
|
1685
1685
|
this._overlay = _overlay;
|
|
1686
|
+
this.closed$ = new Subject();
|
|
1686
1687
|
}
|
|
1687
1688
|
close() {
|
|
1688
1689
|
this._overlay.dispose();
|
|
1690
|
+
this.closed$.next(null);
|
|
1689
1691
|
}
|
|
1690
1692
|
}
|
|
1691
1693
|
|