@sumaris-net/ngx-components 2.6.4-rc7 → 2.6.4-rc8
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/src/app/shared/named-filter/named-filter.service.mjs +3 -9
- package/fesm2015/sumaris-net.ngx-components.mjs +2 -5
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +2 -5
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/named-filter/named-filter.service.d.ts +2 -9
|
@@ -23047,7 +23047,7 @@ NamedFilterFilter = __decorate([
|
|
|
23047
23047
|
const APP_NAMED_FILTER_SERVICE = new InjectionToken('namedFilterService');
|
|
23048
23048
|
// @dynamic
|
|
23049
23049
|
class AbstractNamedFilterService extends BaseEntityService {
|
|
23050
|
-
constructor(graphql, platform,
|
|
23050
|
+
constructor(graphql, platform, dataType, filterType, options) {
|
|
23051
23051
|
super(graphql, platform, dataType, filterType, {
|
|
23052
23052
|
defaultSortBy: 'name',
|
|
23053
23053
|
defaultSortDirection: 'asc',
|
|
@@ -23055,11 +23055,8 @@ class AbstractNamedFilterService extends BaseEntityService {
|
|
|
23055
23055
|
});
|
|
23056
23056
|
this.graphql = graphql;
|
|
23057
23057
|
this.platform = platform;
|
|
23058
|
-
this.accountService = accountService;
|
|
23059
23058
|
this.dataType = dataType;
|
|
23060
23059
|
this.filterType = filterType;
|
|
23061
|
-
this.network = network;
|
|
23062
|
-
this.translate = translate;
|
|
23063
23060
|
this.options = options;
|
|
23064
23061
|
this._logPrefix = '[named-filter-service] ';
|
|
23065
23062
|
}
|
|
@@ -23113,7 +23110,7 @@ AbstractNamedFilterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0
|
|
|
23113
23110
|
AbstractNamedFilterService.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: AbstractNamedFilterService, usesInheritance: true, ngImport: i0 });
|
|
23114
23111
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: AbstractNamedFilterService, decorators: [{
|
|
23115
23112
|
type: Directive
|
|
23116
|
-
}], ctorParameters: function () { return [{ type: GraphqlService }, { type: PlatformService }, { type:
|
|
23113
|
+
}], ctorParameters: function () { return [{ type: GraphqlService }, { type: PlatformService }, { type: undefined }, { type: undefined }, { type: undefined }]; } });
|
|
23117
23114
|
|
|
23118
23115
|
class AppGraphQLModule {
|
|
23119
23116
|
constructor() {
|