dfx-helper
Advanced tools
Comparing version 5.0.2 to 5.0.3
@@ -0,1 +1,9 @@ | ||
## [5.0.3](https://github.com/Dafnik/dfts-common/compare/dfx-helper-5.0.2...dfx-helper-5.0.3) (2023-02-08) | ||
### Bug Fixes | ||
- **dfx-helper:** make selectedChange a BehaviorSubject ([5be343e](https://github.com/Dafnik/dfts-common/commit/5be343e88a5f9558b16534bc1061b0a504bfe62c)) | ||
- **dfx-helper:** ping directive ([beedca1](https://github.com/Dafnik/dfts-common/commit/beedca163f6a8ca14bd42a0a2e972ed64e139707)) | ||
- **dfx-helper:** refresh time of ping directive ([c8aa4f3](https://github.com/Dafnik/dfts-common/commit/c8aa4f3c64f843d155744e5088c590dfbabe443d)) | ||
## [5.0.2](https://github.com/Dafnik/dfts-common/compare/dfx-helper-5.0.1...dfx-helper-5.0.2) (2023-02-06) | ||
@@ -2,0 +10,0 @@ |
@@ -34,3 +34,2 @@ export * from './lib/components/abstract-block'; | ||
export * from './lib/services/is-mobile'; | ||
export * from './lib/strategies/abstract-title'; | ||
export * from './lib/strategies/dfx-preload'; | ||
@@ -37,0 +36,0 @@ export * from './lib/config'; |
import { ChangeDetectorRef } from '@angular/core'; | ||
import { HttpClient } from '@angular/common/http'; | ||
import { NumberInput } from '@angular/cdk/coercion'; | ||
import { AComponent } from '../components/abstract-component'; | ||
import { ADirective } from '../components/abstract-directive'; | ||
import * as i0 from "@angular/core"; | ||
export declare class DfxHideIfPingSucceeds extends AComponent { | ||
export declare class DfxHideIfPingSucceeds extends ADirective { | ||
url: string; | ||
@@ -18,3 +18,3 @@ /** | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DfxHideIfPingSucceeds, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DfxHideIfPingSucceeds, "[hideIfPingSucceeds]", never, { "url": "url"; "refreshTime": "refreshTime"; }, {}, never, never, true, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DfxHideIfPingSucceeds, "[hideIfPingSucceeds]", never, { "url": "url"; "refreshTime": "refreshTime"; }, {}, never, ["*"], true, never>; | ||
} | ||
@@ -24,3 +24,3 @@ export declare class DfxHideIfPingFails extends DfxHideIfPingSucceeds { | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DfxHideIfPingFails, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DfxHideIfPingFails, "[hideIfPingFails]", never, {}, {}, never, never, true, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DfxHideIfPingFails, "[hideIfPingFails]", never, {}, {}, never, ["*"], true, never>; | ||
} | ||
@@ -27,0 +27,0 @@ export declare class DfxHideIfPingModule { |
import { HttpClient } from '@angular/common/http'; | ||
import { Observable, Subject } from 'rxjs'; | ||
import { BehaviorSubject } from 'rxjs'; | ||
import { IEntity, StringOrNumber, UndefinedOr } from 'dfts-helper'; | ||
import { AEntityService } from './abstract-entity.service'; | ||
export declare abstract class ASelectableEntityService<idType extends StringOrNumber, EntityType extends IEntity<idType>> extends AEntityService<idType, EntityType> { | ||
protected abstract selectedStorageKey: string; | ||
protected selectedStorageKey: string; | ||
protected selected?: EntityType; | ||
selectedChange: Subject<UndefinedOr<EntityType>>; | ||
protected selectedChange: BehaviorSubject<UndefinedOr<EntityType>>; | ||
protected constructor(httpClient: HttpClient); | ||
getSelected$(): Observable<UndefinedOr<EntityType>>; | ||
getSelected$: import("rxjs").Observable<UndefinedOr<EntityType>>; | ||
getSelected(): UndefinedOr<EntityType>; | ||
@@ -12,0 +12,0 @@ setSelected(selected: UndefinedOr<EntityType>): void; |
{ | ||
"name": "dfx-helper", | ||
"version": "5.0.2", | ||
"version": "5.0.3", | ||
"description": "Web-development / Typescript / Angular Library with tons of utility tools helping in all projects", | ||
@@ -39,3 +39,3 @@ "private": false, | ||
"rxjs": "2 - 7", | ||
"dfts-helper": "0.0.7" | ||
"dfts-helper": "0.0.8" | ||
}, | ||
@@ -42,0 +42,0 @@ "dependencies": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
663702
137
5177