@nettyapps/ntybase 21.0.35-beta.11 → 21.0.35-beta.14
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/package.json
CHANGED
|
@@ -14,7 +14,6 @@ import { NgForm, FormGroup } from '@angular/forms';
|
|
|
14
14
|
import * as XLSX from 'xlsx';
|
|
15
15
|
import { ICellRendererAngularComp, IFilterAngularComp } from 'ag-grid-angular';
|
|
16
16
|
import { I18nService } from '@nettyapps/ntyi18n';
|
|
17
|
-
import { NettyEnumStorageProxy, NettyEnum } from '@nettyapps/ntyui';
|
|
18
17
|
|
|
19
18
|
declare class Ntybase {
|
|
20
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<Ntybase, never>;
|
|
@@ -1032,21 +1031,20 @@ declare class NettyMenuService {
|
|
|
1032
1031
|
static ɵprov: i0.ɵɵInjectableDeclaration<NettyMenuService>;
|
|
1033
1032
|
}
|
|
1034
1033
|
|
|
1035
|
-
declare abstract class NettyAppsFilterBase<Trecord, Tfilter> extends NettyAppsBase {
|
|
1034
|
+
declare abstract class NettyAppsFilterBase<Trecord, Tfilter> extends NettyAppsBase implements OnInit {
|
|
1036
1035
|
isFilterExpanded: i0.ModelSignal<boolean>;
|
|
1037
1036
|
filteredRecords: i0.OutputEmitterRef<Trecord[]>;
|
|
1038
1037
|
refresh: i0.InputSignal<number>;
|
|
1039
1038
|
fileName: i0.InputSignal<string>;
|
|
1040
1039
|
protected filterProxy: NettyStandardFilterProxy<any>;
|
|
1041
|
-
protected enumStorage: NettyEnumStorageProxy;
|
|
1042
1040
|
protected currentItem: i0.WritableSignal<Tfilter>;
|
|
1043
|
-
allYesNoEnumList: i0.WritableSignal<NettyEnum[]>;
|
|
1044
1041
|
constructor();
|
|
1045
1042
|
ngOnInit(): Promise<void>;
|
|
1046
1043
|
protected onApply(): void;
|
|
1047
1044
|
protected onReset(): void;
|
|
1048
1045
|
protected onExport(): void;
|
|
1049
1046
|
protected abstract createNewFilter(): Tfilter;
|
|
1047
|
+
protected afterOnInit(): Promise<void>;
|
|
1050
1048
|
static ɵfac: i0.ɵɵFactoryDeclaration<NettyAppsFilterBase<any, any>, never>;
|
|
1051
1049
|
static ɵcmp: i0.ɵɵComponentDeclaration<NettyAppsFilterBase<any, any>, "ntybase-netty-apps-base", never, { "isFilterExpanded": { "alias": "isFilterExpanded"; "required": false; "isSignal": true; }; "refresh": { "alias": "refresh"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; }, { "isFilterExpanded": "isFilterExpandedChange"; "filteredRecords": "filteredRecords"; }, never, never, true, never>;
|
|
1052
1050
|
}
|