@nettyapps/ntybase 21.0.35-beta.14 → 21.0.35-beta.16
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
|
@@ -1036,7 +1036,7 @@ declare abstract class NettyAppsFilterBase<Trecord, Tfilter> extends NettyAppsBa
|
|
|
1036
1036
|
filteredRecords: i0.OutputEmitterRef<Trecord[]>;
|
|
1037
1037
|
refresh: i0.InputSignal<number>;
|
|
1038
1038
|
fileName: i0.InputSignal<string>;
|
|
1039
|
-
protected filterProxy: NettyStandardFilterProxy<
|
|
1039
|
+
protected filterProxy: NettyStandardFilterProxy<Tfilter>;
|
|
1040
1040
|
protected currentItem: i0.WritableSignal<Tfilter>;
|
|
1041
1041
|
constructor();
|
|
1042
1042
|
ngOnInit(): Promise<void>;
|
|
@@ -1044,6 +1044,7 @@ declare abstract class NettyAppsFilterBase<Trecord, Tfilter> extends NettyAppsBa
|
|
|
1044
1044
|
protected onReset(): void;
|
|
1045
1045
|
protected onExport(): void;
|
|
1046
1046
|
protected abstract createNewFilter(): Tfilter;
|
|
1047
|
+
protected abstract componentName(): string;
|
|
1047
1048
|
protected afterOnInit(): Promise<void>;
|
|
1048
1049
|
static ɵfac: i0.ɵɵFactoryDeclaration<NettyAppsFilterBase<any, any>, never>;
|
|
1049
1050
|
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>;
|