@paperless/angular 1.28.4 → 1.30.0
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/table/base/table.component.mjs +8 -1
- package/esm2020/lib/stencil/components.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +7 -0
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +7 -0
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/base/table.component.d.ts +9 -1
- package/lib/stencil/components.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { QuickFilter } from '@paperless/core';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
4
5
|
import { BaseFormComponent } from '../../../base/form.component';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare type TableQuickFilter = QuickFilter & {
|
|
@@ -56,6 +57,13 @@ export declare abstract class BaseTableComponent extends BaseFormComponent imple
|
|
|
56
57
|
private _resetPageOrRefresh;
|
|
57
58
|
private _setTableValues;
|
|
58
59
|
private _getChanges;
|
|
60
|
+
protected _watchProperty<T>(observable: Observable<T & {
|
|
61
|
+
id: string;
|
|
62
|
+
}>, identifier?: keyof (T & {
|
|
63
|
+
id: string;
|
|
64
|
+
})): Observable<T & {
|
|
65
|
+
id: string;
|
|
66
|
+
}>;
|
|
59
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseTableComponent, never>;
|
|
60
68
|
static ɵcmp: i0.ɵɵComponentDeclaration<BaseTableComponent, "ng-component", never, {}, { "tableOptionsChange": "tableOptionsChange"; }, never, never, false, never>;
|
|
61
69
|
}
|
|
@@ -365,7 +365,7 @@ export declare interface PModal extends Components.PModal {
|
|
|
365
365
|
/**
|
|
366
366
|
* Closed event
|
|
367
367
|
*/
|
|
368
|
-
closed: EventEmitter<CustomEvent<
|
|
368
|
+
closed: EventEmitter<CustomEvent<string>>;
|
|
369
369
|
}
|
|
370
370
|
export declare class PModalBody {
|
|
371
371
|
protected z: NgZone;
|