@dereekb/dbx-core 12.6.21 → 12.7.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/esm2022/lib/action/action.machine.mjs +4 -5
- package/esm2022/lib/action/action.store.mjs +11 -7
- package/esm2022/lib/action/action.store.source.provide.mjs +4 -9
- package/esm2022/lib/action/directive/auto/action.automodify.directive.mjs +9 -9
- package/esm2022/lib/action/directive/auto/action.autotrigger.directive.mjs +12 -14
- package/esm2022/lib/action/directive/context/action.directive.mjs +7 -5
- package/esm2022/lib/action/directive/debug/action.logger.directive.mjs +9 -9
- package/esm2022/lib/action/directive/map/action.map.directive.mjs +3 -5
- package/esm2022/lib/action/directive/map/action.map.mjs +5 -4
- package/esm2022/lib/action/directive/map/action.map.working.disable.directive.mjs +11 -12
- package/esm2022/lib/action/directive/state/action.disabled.directive.mjs +7 -11
- package/esm2022/lib/action/directive/state/action.disableonsuccess.directive.mjs +7 -11
- package/esm2022/lib/action/directive/state/action.enforce.modified.directive.mjs +10 -13
- package/esm2022/lib/action/directive/state/action.error.handler.directive.mjs +9 -9
- package/esm2022/lib/action/directive/state/action.handler.directive.mjs +3 -5
- package/esm2022/lib/action/directive/state/action.success.directive.mjs +1 -1
- package/esm2022/lib/action/directive/state/action.success.handler.directive.mjs +9 -9
- package/esm2022/lib/action/directive/state/action.value.directive.mjs +6 -15
- package/esm2022/lib/action/directive/state/action.value.stream.directive.mjs +18 -19
- package/esm2022/lib/action/directive/state/action.value.trigger.directive.mjs +5 -6
- package/esm2022/lib/button/action/action.button.directive.mjs +10 -17
- package/esm2022/lib/button/action/action.button.trigger.directive.mjs +9 -9
- package/esm2022/lib/button/button.directive.mjs +11 -16
- package/esm2022/lib/button/button.loading.directive.mjs +7 -6
- package/esm2022/lib/button/router/button.segue.directive.mjs +6 -7
- package/esm2022/lib/filter/filter.abstract.connector.directive.mjs +3 -5
- package/esm2022/lib/filter/filter.map.directive.mjs +3 -5
- package/esm2022/lib/index.mjs +2 -2
- package/esm2022/lib/injection/injection.context.directive.mjs +2 -2
- package/esm2022/lib/injection/injection.instance.mjs +3 -3
- package/esm2022/lib/injection/injection.mjs +1 -1
- package/esm2022/lib/router/model/model.router.id.directive.mjs +9 -13
- package/esm2022/lib/router/model/model.router.key.directive.mjs +9 -12
- package/esm2022/lib/router/model/model.router.uid.directive.mjs +8 -8
- package/esm2022/lib/router/router/transition/transition.watcher.directive.mjs +8 -11
- package/esm2022/lib/rxjs/clean.mjs +28 -0
- package/esm2022/lib/rxjs/destroy.mjs +13 -0
- package/esm2022/lib/rxjs/index.mjs +7 -0
- package/esm2022/lib/rxjs/loading.mjs +19 -0
- package/esm2022/lib/rxjs/lockset.mjs +56 -0
- package/esm2022/lib/rxjs/rxjs.directive.mjs +42 -0
- package/esm2022/lib/rxjs/subscription.mjs +16 -0
- package/esm2022/lib/view/if.directive.mjs +7 -6
- package/fesm2022/dereekb-dbx-core.mjs +306 -245
- package/fesm2022/dereekb-dbx-core.mjs.map +1 -1
- package/lib/action/action.machine.d.ts +2 -4
- package/lib/action/action.store.d.ts +2 -2
- package/lib/action/action.store.source.provide.d.ts +1 -4
- package/lib/action/directive/auto/action.automodify.directive.d.ts +2 -4
- package/lib/action/directive/auto/action.autotrigger.directive.d.ts +3 -5
- package/lib/action/directive/context/action.directive.d.ts +1 -3
- package/lib/action/directive/debug/action.logger.directive.d.ts +2 -4
- package/lib/action/directive/map/action.map.directive.d.ts +1 -3
- package/lib/action/directive/map/action.map.working.disable.directive.d.ts +2 -5
- package/lib/action/directive/state/action.disabled.directive.d.ts +1 -4
- package/lib/action/directive/state/action.disableonsuccess.directive.d.ts +1 -4
- package/lib/action/directive/state/action.enforce.modified.directive.d.ts +2 -5
- package/lib/action/directive/state/action.error.handler.directive.d.ts +2 -4
- package/lib/action/directive/state/action.handler.directive.d.ts +1 -3
- package/lib/action/directive/state/action.success.directive.d.ts +1 -2
- package/lib/action/directive/state/action.success.handler.directive.d.ts +2 -4
- package/lib/action/directive/state/action.value.directive.d.ts +1 -5
- package/lib/action/directive/state/action.value.stream.directive.d.ts +2 -6
- package/lib/action/directive/state/action.value.trigger.directive.d.ts +4 -5
- package/lib/button/action/action.button.directive.d.ts +2 -6
- package/lib/button/action/action.button.trigger.directive.d.ts +2 -4
- package/lib/button/button.directive.d.ts +3 -5
- package/lib/button/button.loading.directive.d.ts +2 -2
- package/lib/button/router/button.segue.directive.d.ts +1 -2
- package/lib/filter/filter.abstract.connector.directive.d.ts +1 -3
- package/lib/filter/filter.map.directive.d.ts +1 -3
- package/lib/index.d.ts +1 -1
- package/lib/injection/injection.d.ts +2 -0
- package/lib/router/model/model.router.id.directive.d.ts +2 -5
- package/lib/router/model/model.router.key.directive.d.ts +2 -5
- package/lib/router/model/model.router.uid.directive.d.ts +2 -4
- package/lib/router/router/transition/transition.watcher.directive.d.ts +3 -5
- package/lib/rxjs/clean.d.ts +16 -0
- package/lib/rxjs/destroy.d.ts +7 -0
- package/lib/rxjs/index.d.ts +6 -0
- package/lib/rxjs/loading.d.ts +13 -0
- package/lib/rxjs/lockset.d.ts +47 -0
- package/lib/{subscription/subscription.directive.d.ts → rxjs/rxjs.directive.d.ts} +4 -0
- package/lib/rxjs/subscription.d.ts +9 -0
- package/lib/view/if.directive.d.ts +2 -2
- package/package.json +1 -1
- package/esm2022/lib/subscription/index.mjs +0 -2
- package/esm2022/lib/subscription/subscription.directive.mjs +0 -38
- package/lib/subscription/index.d.ts +0 -1
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
import { NgZone
|
|
1
|
+
import { NgZone } from '@angular/core';
|
|
2
2
|
import { AbstractTransitionDirective } from './transition.directive';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* Abstract directive that listens to onSuccess transition events and runs a function.
|
|
6
6
|
*/
|
|
7
|
-
export declare abstract class AbstractTransitionWatcherDirective extends AbstractTransitionDirective
|
|
8
|
-
private readonly _transitionSub;
|
|
7
|
+
export declare abstract class AbstractTransitionWatcherDirective extends AbstractTransitionDirective {
|
|
9
8
|
protected readonly ngZone: NgZone;
|
|
10
|
-
|
|
11
|
-
ngOnDestroy(): void;
|
|
9
|
+
constructor();
|
|
12
10
|
protected zoneUpdateForSuccessfulTransition(): void;
|
|
13
11
|
protected abstract updateForSuccessfulTransition(): void;
|
|
14
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractTransitionWatcherDirective, never>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type Destroyable, type DestroyFunction } from '@dereekb/util';
|
|
2
|
+
import { type Subject } from 'rxjs';
|
|
3
|
+
/**
|
|
4
|
+
* Wraps a Destroyable in a function that registers the input Destroyable to be destroyed
|
|
5
|
+
* when the DestroyRef is destroyed in the context.
|
|
6
|
+
*
|
|
7
|
+
* Must be run in an Angular injection context.
|
|
8
|
+
*/
|
|
9
|
+
export declare function clean<T extends Destroyable | DestroyFunction>(input: T): T;
|
|
10
|
+
/**
|
|
11
|
+
* Wraps a Subject in a function that registers the input Subject to be completed
|
|
12
|
+
* when the DestroyRef is destroyed in the context.
|
|
13
|
+
*
|
|
14
|
+
* Must be run in an Angular injection context.
|
|
15
|
+
*/
|
|
16
|
+
export declare function completeOnDestroy<T extends Pick<Subject<any>, 'complete' | 'error'>>(input: T): T;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type DestroyFunction, DestroyFunctionObject, type Maybe } from '@dereekb/util';
|
|
2
|
+
/**
|
|
3
|
+
* Creates a new DestroyFunctionObject that is automatically destroyed when the context is destroyed.
|
|
4
|
+
*
|
|
5
|
+
* Must be run within an Angular injection context.
|
|
6
|
+
*/
|
|
7
|
+
export declare function cleanDestroy(input?: Maybe<DestroyFunction>): DestroyFunctionObject;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type LoadingState, type LoadingContextEvent, type LoadingStateContextInput, type MutableLoadingStateContext, type ListLoadingState, type ListLoadingStateContextInput, type MutableListLoadingStateContext } from '@dereekb/rxjs';
|
|
2
|
+
/**
|
|
3
|
+
* Creates a new LoadingStateContext that is automatically destroyed when the context is destroyed.
|
|
4
|
+
*
|
|
5
|
+
* Must be run within an Angular injection context.
|
|
6
|
+
*/
|
|
7
|
+
export declare function cleanLoadingContext<T = unknown, S extends LoadingState<T> = LoadingState<T>, E extends LoadingContextEvent = LoadingContextEvent & S>(input?: LoadingStateContextInput<T, S, E>): MutableLoadingStateContext<T, S, E>;
|
|
8
|
+
/**
|
|
9
|
+
* Creates a new ListLoadingStateContext that is automatically destroyed when the context is destroyed.
|
|
10
|
+
*
|
|
11
|
+
* Must be run within an Angular injection context.
|
|
12
|
+
*/
|
|
13
|
+
export declare function cleanListLoadingContext<L = unknown, S extends ListLoadingState<L> = ListLoadingState<L>>(input?: ListLoadingStateContextInput<L, S>): MutableListLoadingStateContext<L, S>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { type DestroyOnNextUnlockConfig, LockSet, SubscriptionObject } from '@dereekb/rxjs';
|
|
2
|
+
import { type DestroyFunction, type GetterOrValue, type Maybe } from '@dereekb/util';
|
|
3
|
+
import { type Unsubscribable } from 'rxjs';
|
|
4
|
+
export interface CleanLockSetConfig {
|
|
5
|
+
/**
|
|
6
|
+
* Arbitrary onDestroy function to call when onDestroy is called by the internal DestroyRef.
|
|
7
|
+
*/
|
|
8
|
+
readonly onDestroy?: Maybe<() => void>;
|
|
9
|
+
/**
|
|
10
|
+
* Called when the LockSet is finally destroyed.
|
|
11
|
+
*/
|
|
12
|
+
readonly onLockSetDestroy?: Maybe<() => void>;
|
|
13
|
+
/**
|
|
14
|
+
* Configures when the lockset should be destroyed.
|
|
15
|
+
*/
|
|
16
|
+
readonly destroyLocksetTiming?: Maybe<DestroyOnNextUnlockConfig>;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Creates a new LockSet that is automatically destroyed when the component is destroyed.
|
|
20
|
+
*
|
|
21
|
+
* Must be run within an Angular injection context.
|
|
22
|
+
*
|
|
23
|
+
* @param onLockSetDestroy Optional callback to run when the lockset is unlocked.
|
|
24
|
+
*/
|
|
25
|
+
export declare function cleanLockSet(config?: Maybe<CleanLockSetConfig>): LockSet;
|
|
26
|
+
/**
|
|
27
|
+
* Runs the given onDestroy function when the context is destroyed, and the lock set's next unlock occurs.
|
|
28
|
+
*
|
|
29
|
+
* Must be run within an Angular injection context.
|
|
30
|
+
*
|
|
31
|
+
* @param lockSet The lockset to use.
|
|
32
|
+
* @param onDestroy The function to run when the lockset is unlocked.
|
|
33
|
+
*/
|
|
34
|
+
export declare function cleanWithLockSet(lockSet: LockSet, onDestroy: DestroyFunction): void;
|
|
35
|
+
/**
|
|
36
|
+
* Config for cleanSubscriptionWithLockSet()
|
|
37
|
+
*/
|
|
38
|
+
export interface CleanSubscriptionWithLockSetConfig<T extends Unsubscribable = Unsubscribable> {
|
|
39
|
+
readonly lockSet: LockSet;
|
|
40
|
+
readonly sub?: Maybe<GetterOrValue<T>>;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Creates a new SubscriptionObject that is automatically destroyed when the context is destroyed, and the lock set's next unlock occurs.
|
|
44
|
+
*
|
|
45
|
+
* Must be run within an Angular injection context.
|
|
46
|
+
*/
|
|
47
|
+
export declare function cleanSubscriptionWithLockSet<T extends Unsubscribable = Unsubscribable>(input: CleanSubscriptionWithLockSetConfig<T>): SubscriptionObject<T>;
|
|
@@ -5,6 +5,8 @@ import { type Maybe } from '@dereekb/util';
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/**
|
|
7
7
|
* Abstract component that contains a SubscriptionObject and will clean it up automatically.
|
|
8
|
+
*
|
|
9
|
+
* @deprecated Consider using cleanSubscription() directly instead, as it performs the same functionality
|
|
8
10
|
*/
|
|
9
11
|
export declare abstract class AbstractSubscriptionDirective<T extends Unsubscribable = Unsubscribable> implements OnDestroy {
|
|
10
12
|
private readonly _subscriptionObject;
|
|
@@ -15,6 +17,8 @@ export declare abstract class AbstractSubscriptionDirective<T extends Unsubscrib
|
|
|
15
17
|
}
|
|
16
18
|
/**
|
|
17
19
|
* AbstractSubscriptionDirective extension that prevents the OnDestroy from occuring until the lockset is unlocked.
|
|
20
|
+
*
|
|
21
|
+
* @deprecated Consider using cleanLockSet() directly instead, as it performs the same functionality.
|
|
18
22
|
*/
|
|
19
23
|
export declare abstract class AbstractLockSetSubscriptionDirective<T extends Unsubscribable = Unsubscribable> extends AbstractSubscriptionDirective<T> implements OnDestroy {
|
|
20
24
|
readonly lockSet: LockSet;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SubscriptionObject } from '@dereekb/rxjs';
|
|
2
|
+
import { type GetterOrValue, type Maybe } from '@dereekb/util';
|
|
3
|
+
import { type Unsubscribable } from 'rxjs';
|
|
4
|
+
/**
|
|
5
|
+
* Creates a new SubscriptionObject that is automatically destroyed when the context is destroyed.
|
|
6
|
+
*
|
|
7
|
+
* Must be run within an Angular injection context.
|
|
8
|
+
*/
|
|
9
|
+
export declare function cleanSubscription<T extends Unsubscribable = Unsubscribable>(sub?: Maybe<GetterOrValue<T>>): SubscriptionObject<T>;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { AbstractSubscriptionDirective } from '../subscription';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
/**
|
|
6
5
|
* Abstract directive class that watches a show$ observable and behaves like *ngIf.
|
|
7
6
|
*/
|
|
8
|
-
export declare abstract class AbstractIfDirective
|
|
7
|
+
export declare abstract class AbstractIfDirective implements OnInit {
|
|
9
8
|
private readonly _templateRef;
|
|
10
9
|
private readonly _viewContainer;
|
|
11
10
|
/**
|
|
12
11
|
* Observable that is watched for showing/hiding.
|
|
13
12
|
*/
|
|
14
13
|
abstract readonly show$: Observable<boolean>;
|
|
14
|
+
private readonly _sub;
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractIfDirective, never>;
|
|
17
17
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractIfDirective, never, never, {}, {}, never, never, false, never>;
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './subscription.directive';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9kYngtY29yZS9zcmMvbGliL3N1YnNjcmlwdGlvbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zdWJzY3JpcHRpb24uZGlyZWN0aXZlJztcbiJdfQ==
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import { SubscriptionObject, LockSet } from '@dereekb/rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* Abstract component that contains a SubscriptionObject and will clean it up automatically.
|
|
6
|
-
*/
|
|
7
|
-
export class AbstractSubscriptionDirective {
|
|
8
|
-
_subscriptionObject = new SubscriptionObject();
|
|
9
|
-
ngOnDestroy() {
|
|
10
|
-
this._subscriptionObject.destroy();
|
|
11
|
-
}
|
|
12
|
-
set sub(subscription) {
|
|
13
|
-
this._subscriptionObject.subscription = subscription;
|
|
14
|
-
}
|
|
15
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AbstractSubscriptionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
16
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: AbstractSubscriptionDirective, ngImport: i0 });
|
|
17
|
-
}
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AbstractSubscriptionDirective, decorators: [{
|
|
19
|
-
type: Directive
|
|
20
|
-
}] });
|
|
21
|
-
/**
|
|
22
|
-
* AbstractSubscriptionDirective extension that prevents the OnDestroy from occuring until the lockset is unlocked.
|
|
23
|
-
*/
|
|
24
|
-
export class AbstractLockSetSubscriptionDirective extends AbstractSubscriptionDirective {
|
|
25
|
-
lockSet = new LockSet();
|
|
26
|
-
ngOnDestroy() {
|
|
27
|
-
this.lockSet.onNextUnlock(() => this.onLockSetDestroy());
|
|
28
|
-
}
|
|
29
|
-
onLockSetDestroy() {
|
|
30
|
-
super.ngOnDestroy();
|
|
31
|
-
}
|
|
32
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AbstractLockSetSubscriptionDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
33
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: AbstractLockSetSubscriptionDirective, usesInheritance: true, ngImport: i0 });
|
|
34
|
-
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AbstractLockSetSubscriptionDirective, decorators: [{
|
|
36
|
-
type: Directive
|
|
37
|
-
}] });
|
|
38
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Vic2NyaXB0aW9uLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2RieC1jb3JlL3NyYy9saWIvc3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFhLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVyRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsT0FBTyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUc1RDs7R0FFRztBQUVILE1BQU0sT0FBZ0IsNkJBQTZCO0lBQ2hDLG1CQUFtQixHQUFHLElBQUksa0JBQWtCLEVBQUUsQ0FBQztJQUVoRSxXQUFXO1FBQ1QsSUFBSSxDQUFDLG1CQUFtQixDQUFDLE9BQU8sRUFBRSxDQUFDO0lBQ3JDLENBQUM7SUFFRCxJQUFjLEdBQUcsQ0FBQyxZQUE2QjtRQUM3QyxJQUFJLENBQUMsbUJBQW1CLENBQUMsWUFBWSxHQUFHLFlBQVksQ0FBQztJQUN2RCxDQUFDO3dHQVRtQiw2QkFBNkI7NEZBQTdCLDZCQUE2Qjs7NEZBQTdCLDZCQUE2QjtrQkFEbEQsU0FBUzs7QUFhVjs7R0FFRztBQUVILE1BQU0sT0FBZ0Isb0NBQWdGLFNBQVEsNkJBQWdDO0lBQ25JLE9BQU8sR0FBRyxJQUFJLE9BQU8sRUFBRSxDQUFDO0lBRXhCLFdBQVc7UUFDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUMsQ0FBQztJQUMzRCxDQUFDO0lBRVMsZ0JBQWdCO1FBQ3hCLEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQztJQUN0QixDQUFDO3dHQVRtQixvQ0FBb0M7NEZBQXBDLG9DQUFvQzs7NEZBQXBDLG9DQUFvQztrQkFEekQsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uRGVzdHJveSwgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBVbnN1YnNjcmliYWJsZSB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgU3Vic2NyaXB0aW9uT2JqZWN0LCBMb2NrU2V0IH0gZnJvbSAnQGRlcmVla2Ivcnhqcyc7XG5pbXBvcnQgeyB0eXBlIE1heWJlIH0gZnJvbSAnQGRlcmVla2IvdXRpbCc7XG5cbi8qKlxuICogQWJzdHJhY3QgY29tcG9uZW50IHRoYXQgY29udGFpbnMgYSBTdWJzY3JpcHRpb25PYmplY3QgYW5kIHdpbGwgY2xlYW4gaXQgdXAgYXV0b21hdGljYWxseS5cbiAqL1xuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQWJzdHJhY3RTdWJzY3JpcHRpb25EaXJlY3RpdmU8VCBleHRlbmRzIFVuc3Vic2NyaWJhYmxlID0gVW5zdWJzY3JpYmFibGU+IGltcGxlbWVudHMgT25EZXN0cm95IHtcbiAgcHJpdmF0ZSByZWFkb25seSBfc3Vic2NyaXB0aW9uT2JqZWN0ID0gbmV3IFN1YnNjcmlwdGlvbk9iamVjdCgpO1xuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuX3N1YnNjcmlwdGlvbk9iamVjdC5kZXN0cm95KCk7XG4gIH1cblxuICBwcm90ZWN0ZWQgc2V0IHN1YihzdWJzY3JpcHRpb246IE1heWJlPFQgfCB2b2lkPikge1xuICAgIHRoaXMuX3N1YnNjcmlwdGlvbk9iamVjdC5zdWJzY3JpcHRpb24gPSBzdWJzY3JpcHRpb247XG4gIH1cbn1cblxuLyoqXG4gKiBBYnN0cmFjdFN1YnNjcmlwdGlvbkRpcmVjdGl2ZSBleHRlbnNpb24gdGhhdCBwcmV2ZW50cyB0aGUgT25EZXN0cm95IGZyb20gb2NjdXJpbmcgdW50aWwgdGhlIGxvY2tzZXQgaXMgdW5sb2NrZWQuXG4gKi9cbkBEaXJlY3RpdmUoKVxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIEFic3RyYWN0TG9ja1NldFN1YnNjcmlwdGlvbkRpcmVjdGl2ZTxUIGV4dGVuZHMgVW5zdWJzY3JpYmFibGUgPSBVbnN1YnNjcmliYWJsZT4gZXh0ZW5kcyBBYnN0cmFjdFN1YnNjcmlwdGlvbkRpcmVjdGl2ZTxUPiBpbXBsZW1lbnRzIE9uRGVzdHJveSB7XG4gIHJlYWRvbmx5IGxvY2tTZXQgPSBuZXcgTG9ja1NldCgpO1xuXG4gIG92ZXJyaWRlIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMubG9ja1NldC5vbk5leHRVbmxvY2soKCkgPT4gdGhpcy5vbkxvY2tTZXREZXN0cm95KCkpO1xuICB9XG5cbiAgcHJvdGVjdGVkIG9uTG9ja1NldERlc3Ryb3koKTogdm9pZCB7XG4gICAgc3VwZXIubmdPbkRlc3Ryb3koKTtcbiAgfVxufVxuIl19
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './subscription.directive';
|