@dereekb/dbx-core 9.23.17 → 9.23.19
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/lib/injection/index.mjs +4 -1
- package/esm2020/lib/injection/injection.array.component.mjs +46 -0
- package/esm2020/lib/injection/injection.array.mjs +2 -0
- package/esm2020/lib/injection/injection.component.module.mjs +9 -6
- package/esm2020/lib/injection/injection.instance.mjs +2 -2
- package/esm2020/lib/injection/injection.mjs +1 -1
- package/esm2020/lib/injection/injection.rxjs.mjs +24 -0
- package/esm2020/lib/pipe/async/asobservable.pipe.mjs +18 -0
- package/esm2020/lib/pipe/async/async.pipe.module.mjs +17 -0
- package/esm2020/lib/pipe/async/index.mjs +3 -0
- package/esm2020/lib/pipe/index.mjs +2 -1
- package/esm2020/lib/router/anchor/anchor.mjs +1 -1
- package/esm2020/lib/router/anchor/index.mjs +2 -1
- package/esm2020/lib/router/anchor/mousable.mjs +2 -0
- package/fesm2015/dereekb-dbx-core.mjs +111 -18
- package/fesm2015/dereekb-dbx-core.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-core.mjs +111 -18
- package/fesm2020/dereekb-dbx-core.mjs.map +1 -1
- package/lib/injection/index.d.ts +3 -0
- package/lib/injection/injection.array.component.d.ts +18 -0
- package/lib/injection/injection.array.d.ts +12 -0
- package/lib/injection/injection.component.module.d.ts +5 -3
- package/lib/injection/injection.d.ts +5 -1
- package/lib/injection/injection.rxjs.d.ts +12 -0
- package/lib/pipe/async/asobservable.pipe.d.ts +12 -0
- package/lib/pipe/async/async.pipe.module.d.ts +7 -0
- package/lib/pipe/async/index.d.ts +2 -0
- package/lib/pipe/index.d.ts +1 -0
- package/lib/router/anchor/anchor.d.ts +2 -1
- package/lib/router/anchor/index.d.ts +1 -0
- package/lib/router/anchor/mousable.d.ts +5 -0
- package/package.json +4 -5
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Directive, Injectable, Host, Input, forwardRef, Optional, NgModule, InjectionToken, Inject, EventEmitter, Output,
|
|
2
|
+
import { Directive, Injectable, Host, Input, forwardRef, Optional, NgModule, InjectionToken, Inject, EventEmitter, Output, Pipe, LOCALE_ID, Injector, ViewContainerRef, Component, ViewChild, ChangeDetectionStrategy } from '@angular/core';
|
|
3
3
|
import * as i1 from 'rxjs';
|
|
4
4
|
import { switchMap, first, BehaviorSubject, combineLatest, distinctUntilChanged, filter, Subject, debounce, interval, throttle, exhaustMap, mergeMap, map, shareReplay, EMPTY, withLatestFrom, of, startWith, delay, tap, catchError, firstValueFrom, takeUntil, Observable } from 'rxjs';
|
|
5
5
|
import * as i1$5 from '@dereekb/rxjs';
|
|
6
|
-
import { SubscriptionObject, LockSet, filterMaybe, LoadingStateType, beginLoading, idleLoadingState, errorResult, successResult, scanCount, workFactory, combineLatestFromMapValuesObsFn, emitDelayObs, asObservable, returnIfIs, timeoutStartWith, skipFirstMaybe, distinctUntilKeysChange, maybeValueFromObservableOrValueGetter, switchMapToDefault, asObservableFromGetter, onFalseToTrue, onTrueToFalse, setContainsAllValuesFrom, setContainsNoValueFrom, FilterSource, FilterSourceConnector, FilterSourceInstance, FilterMap } from '@dereekb/rxjs';
|
|
7
|
-
import * as i1$
|
|
8
|
-
import { isDefinedAndNotFalse, hasValueOrNotEmpty, BooleanStringKeyArrayUtilityInstance, reduceBooleansWithOrFn, getValueFromGetter, toReadableError, isGetter, asArray, setIncludes, isAllowed, maybeSet, expandTreeFunction, flattenTreeToArrayFunction, expandFlattenTreeFunction, mailToUrlString, telUrlString, mergeObjects, KeyValueTypleValueFilter, filterMaybeValues, defaultForwardFunctionFactory, mergeArrays, mergeArrayOrValueIntoArray, promiseReference, DataIsExpiredError, DataDoesNotExistError, hasNonNullValue, splitJoinRemainder, StorageObjectUtility, SHARED_MEMORY_STORAGE } from '@dereekb/util';
|
|
6
|
+
import { SubscriptionObject, LockSet, filterMaybe, LoadingStateType, beginLoading, idleLoadingState, errorResult, successResult, scanCount, workFactory, combineLatestFromMapValuesObsFn, emitDelayObs, asObservable, returnIfIs, timeoutStartWith, skipFirstMaybe, distinctUntilKeysChange, maybeValueFromObservableOrValueGetter, switchMapToDefault, asObservableFromGetter, onFalseToTrue, onTrueToFalse, setContainsAllValuesFrom, setContainsNoValueFrom, FilterSource, FilterSourceConnector, FilterSourceInstance, FilterMap, switchMapObject } from '@dereekb/rxjs';
|
|
7
|
+
import * as i1$7 from '@dereekb/util';
|
|
8
|
+
import { isDefinedAndNotFalse, hasValueOrNotEmpty, BooleanStringKeyArrayUtilityInstance, reduceBooleansWithOrFn, getValueFromGetter, toReadableError, isGetter, asArray, setIncludes, isAllowed, maybeSet, expandTreeFunction, flattenTreeToArrayFunction, expandFlattenTreeFunction, mailToUrlString, telUrlString, mergeObjects, KeyValueTypleValueFilter, filterMaybeValues, defaultForwardFunctionFactory, mergeArrays, mergeArrayOrValueIntoArray, promiseReference, asGetter, DataIsExpiredError, DataDoesNotExistError, hasNonNullValue, splitJoinRemainder, StorageObjectUtility, SHARED_MEMORY_STORAGE } from '@dereekb/util';
|
|
9
9
|
import { ComponentStore } from '@ngrx/component-store';
|
|
10
|
+
import * as i1$6 from '@angular/common';
|
|
10
11
|
import { CommonModule, formatDate } from '@angular/common';
|
|
11
12
|
import * as i1$3 from '@ngrx/effects';
|
|
12
13
|
import { ofType, createEffect, EffectsModule } from '@ngrx/effects';
|
|
@@ -3759,6 +3760,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
3759
3760
|
}]
|
|
3760
3761
|
}] });
|
|
3761
3762
|
|
|
3763
|
+
/**
|
|
3764
|
+
* Pipes an ObservableOrValueGetter to an Observable value.
|
|
3765
|
+
*/
|
|
3766
|
+
class AsObservablePipe {
|
|
3767
|
+
transform(input) {
|
|
3768
|
+
return asObservableFromGetter(input);
|
|
3769
|
+
}
|
|
3770
|
+
}
|
|
3771
|
+
AsObservablePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AsObservablePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
3772
|
+
AsObservablePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: AsObservablePipe, name: "asObservable" });
|
|
3773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AsObservablePipe, decorators: [{
|
|
3774
|
+
type: Pipe,
|
|
3775
|
+
args: [{ name: 'asObservable' }]
|
|
3776
|
+
}] });
|
|
3777
|
+
|
|
3778
|
+
const declarations$3 = [AsObservablePipe];
|
|
3779
|
+
class DbxAsyncPipeModule {
|
|
3780
|
+
}
|
|
3781
|
+
DbxAsyncPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxAsyncPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3782
|
+
DbxAsyncPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxAsyncPipeModule, declarations: [AsObservablePipe], exports: [AsObservablePipe] });
|
|
3783
|
+
DbxAsyncPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxAsyncPipeModule });
|
|
3784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxAsyncPipeModule, decorators: [{
|
|
3785
|
+
type: NgModule,
|
|
3786
|
+
args: [{
|
|
3787
|
+
exports: declarations$3,
|
|
3788
|
+
declarations: declarations$3
|
|
3789
|
+
}]
|
|
3790
|
+
}] });
|
|
3791
|
+
|
|
3762
3792
|
/**
|
|
3763
3793
|
* Pipe that takes in a date and number of minutes and outputs a formatted date.
|
|
3764
3794
|
*/
|
|
@@ -4053,7 +4083,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
4053
4083
|
args: [{ name: 'dateTimeRangeOnlyDistance' }]
|
|
4054
4084
|
}] });
|
|
4055
4085
|
|
|
4056
|
-
const declarations$
|
|
4086
|
+
const declarations$2 = [DateFromToTimePipe, DateDayRangePipe, DateDayTimeRangePipe, DateTimeRangeOnlyPipe, DateTimeRangePipe, DateTimeRangeOnlyDistancePipe, DateFormatDistancePipe, MinutesStringPipe, TimeDistanceCountdownPipe, TimeDistancePipe, DateDistancePipe, ToJsDatePipe, ToMinutesPipe];
|
|
4057
4087
|
class DbxDatePipeModule {
|
|
4058
4088
|
}
|
|
4059
4089
|
DbxDatePipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxDatePipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -4062,8 +4092,8 @@ DbxDatePipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", versi
|
|
|
4062
4092
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxDatePipeModule, decorators: [{
|
|
4063
4093
|
type: NgModule,
|
|
4064
4094
|
args: [{
|
|
4065
|
-
exports: declarations$
|
|
4066
|
-
declarations: declarations$
|
|
4095
|
+
exports: declarations$2,
|
|
4096
|
+
declarations: declarations$2
|
|
4067
4097
|
}]
|
|
4068
4098
|
}] });
|
|
4069
4099
|
|
|
@@ -4380,7 +4410,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
4380
4410
|
}]
|
|
4381
4411
|
}] });
|
|
4382
4412
|
|
|
4383
|
-
const declarations = [DbxFilterSourceDirective, DbxFilterMapSourceConnectorDirective, DbxFilterConnectSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceDirective];
|
|
4413
|
+
const declarations$1 = [DbxFilterSourceDirective, DbxFilterMapSourceConnectorDirective, DbxFilterConnectSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceDirective];
|
|
4384
4414
|
class DbxCoreFilterModule {
|
|
4385
4415
|
}
|
|
4386
4416
|
DbxCoreFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxCoreFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -4390,8 +4420,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
4390
4420
|
type: NgModule,
|
|
4391
4421
|
args: [{
|
|
4392
4422
|
imports: [CommonModule],
|
|
4393
|
-
declarations,
|
|
4394
|
-
exports: declarations
|
|
4423
|
+
declarations: declarations$1,
|
|
4424
|
+
exports: declarations$1
|
|
4395
4425
|
}]
|
|
4396
4426
|
}] });
|
|
4397
4427
|
|
|
@@ -4482,8 +4512,8 @@ class DbxInjectionInstance {
|
|
|
4482
4512
|
_initComponent(config, content) {
|
|
4483
4513
|
content.clear();
|
|
4484
4514
|
const { init, injector: inputInjector, providers, ngModuleRef, componentClass, data } = config;
|
|
4485
|
-
let injector;
|
|
4486
4515
|
const parentInjector = inputInjector ?? this._injector;
|
|
4516
|
+
let injector = parentInjector;
|
|
4487
4517
|
if (providers || data) {
|
|
4488
4518
|
injector = Injector.create({
|
|
4489
4519
|
parent: parentInjector,
|
|
@@ -4586,6 +4616,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
4586
4616
|
args: ['content', { static: true, read: ViewContainerRef }]
|
|
4587
4617
|
}] } });
|
|
4588
4618
|
|
|
4619
|
+
/**
|
|
4620
|
+
* Component that injects content based on the configuration into the view.
|
|
4621
|
+
*/
|
|
4622
|
+
class DbxInjectionArrayComponent {
|
|
4623
|
+
constructor() {
|
|
4624
|
+
this._entries = new BehaviorSubject([]);
|
|
4625
|
+
this.entries$ = this._entries.asObservable();
|
|
4626
|
+
this.trackByKeyFn = (index, item) => item.key;
|
|
4627
|
+
}
|
|
4628
|
+
ngOnDestroy() {
|
|
4629
|
+
this._entries.complete();
|
|
4630
|
+
}
|
|
4631
|
+
get entries() {
|
|
4632
|
+
return this._entries.getValue();
|
|
4633
|
+
}
|
|
4634
|
+
set entries(entries) {
|
|
4635
|
+
this._entries.next(entries || []);
|
|
4636
|
+
}
|
|
4637
|
+
}
|
|
4638
|
+
DbxInjectionArrayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionArrayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4639
|
+
DbxInjectionArrayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxInjectionArrayComponent, selector: "dbx-injection-array", inputs: { entries: "entries" }, ngImport: i0, template: `
|
|
4640
|
+
<ng-container *ngFor="let entry of entries$ | async; trackBy: trackByKeyFn">
|
|
4641
|
+
<dbx-injection [config]="entry.injectionConfig | asObservable | async"></dbx-injection>
|
|
4642
|
+
</ng-container>
|
|
4643
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1$6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i1$6.AsyncPipe, name: "async" }, { kind: "pipe", type: AsObservablePipe, name: "asObservable" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionArrayComponent, decorators: [{
|
|
4645
|
+
type: Component,
|
|
4646
|
+
args: [{
|
|
4647
|
+
selector: 'dbx-injection-array',
|
|
4648
|
+
template: `
|
|
4649
|
+
<ng-container *ngFor="let entry of entries$ | async; trackBy: trackByKeyFn">
|
|
4650
|
+
<dbx-injection [config]="entry.injectionConfig | asObservable | async"></dbx-injection>
|
|
4651
|
+
</ng-container>
|
|
4652
|
+
`,
|
|
4653
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
4654
|
+
}]
|
|
4655
|
+
}], ctorParameters: function () { return []; }, propDecorators: { entries: [{
|
|
4656
|
+
type: Input
|
|
4657
|
+
}] } });
|
|
4658
|
+
|
|
4589
4659
|
/**
|
|
4590
4660
|
* View that can switch to show another arbitrary view, then switch back when the promise ends.
|
|
4591
4661
|
*
|
|
@@ -4726,17 +4796,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
4726
4796
|
type: Input
|
|
4727
4797
|
}] } });
|
|
4728
4798
|
|
|
4799
|
+
const declarations = [DbxInjectionComponent, DbxInjectionArrayComponent, DbxInjectionContextDirective];
|
|
4729
4800
|
class DbxInjectionComponentModule {
|
|
4730
4801
|
}
|
|
4731
4802
|
DbxInjectionComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4732
|
-
DbxInjectionComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionComponentModule, declarations: [DbxInjectionComponent, DbxInjectionContextDirective], imports: [CommonModule], exports: [DbxInjectionComponent, DbxInjectionContextDirective] });
|
|
4733
|
-
DbxInjectionComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionComponentModule, imports: [CommonModule] });
|
|
4803
|
+
DbxInjectionComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionComponentModule, declarations: [DbxInjectionComponent, DbxInjectionArrayComponent, DbxInjectionContextDirective], imports: [CommonModule, DbxAsyncPipeModule], exports: [DbxInjectionComponent, DbxInjectionArrayComponent, DbxInjectionContextDirective] });
|
|
4804
|
+
DbxInjectionComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionComponentModule, imports: [CommonModule, DbxAsyncPipeModule] });
|
|
4734
4805
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxInjectionComponentModule, decorators: [{
|
|
4735
4806
|
type: NgModule,
|
|
4736
4807
|
args: [{
|
|
4737
|
-
imports: [CommonModule],
|
|
4738
|
-
declarations
|
|
4739
|
-
exports:
|
|
4808
|
+
imports: [CommonModule, DbxAsyncPipeModule],
|
|
4809
|
+
declarations,
|
|
4810
|
+
exports: declarations
|
|
4740
4811
|
}]
|
|
4741
4812
|
}] });
|
|
4742
4813
|
|
|
@@ -4766,6 +4837,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
4766
4837
|
type: Host
|
|
4767
4838
|
}] }]; } });
|
|
4768
4839
|
|
|
4840
|
+
/**
|
|
4841
|
+
* Provides a switchMap that passes configuration from the observable, unless the value is null/undefined/true in which case it passes the default configuration.
|
|
4842
|
+
*
|
|
4843
|
+
* @param defaultConfig
|
|
4844
|
+
* @returns
|
|
4845
|
+
*/
|
|
4846
|
+
function switchMapDbxInjectionComponentConfig(defaultConfig) {
|
|
4847
|
+
const defaultAsGetter = asGetter(defaultConfig);
|
|
4848
|
+
return switchMapObject({
|
|
4849
|
+
defaultGetter: () => {
|
|
4850
|
+
const value = defaultAsGetter();
|
|
4851
|
+
if (typeof value === 'function') {
|
|
4852
|
+
// is a component class
|
|
4853
|
+
return { componentClass: value };
|
|
4854
|
+
}
|
|
4855
|
+
else {
|
|
4856
|
+
return value;
|
|
4857
|
+
}
|
|
4858
|
+
}
|
|
4859
|
+
});
|
|
4860
|
+
}
|
|
4861
|
+
|
|
4769
4862
|
/**
|
|
4770
4863
|
* Abstract ComponentStore extension that provides a LockSet and OnDestroy delaying/cleanup.
|
|
4771
4864
|
*/
|
|
@@ -5056,7 +5149,7 @@ SimpleStorageAccessorFactory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0
|
|
|
5056
5149
|
SimpleStorageAccessorFactory.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: SimpleStorageAccessorFactory });
|
|
5057
5150
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: SimpleStorageAccessorFactory, decorators: [{
|
|
5058
5151
|
type: Injectable
|
|
5059
|
-
}], ctorParameters: function () { return [{ type: i1$
|
|
5152
|
+
}], ctorParameters: function () { return [{ type: i1$7.FullStorageObject, decorators: [{
|
|
5060
5153
|
type: Inject,
|
|
5061
5154
|
args: [DEFAULT_STORAGE_OBJECT_TOKEN]
|
|
5062
5155
|
}] }]; } });
|
|
@@ -5176,5 +5269,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
5176
5269
|
* Generated bundle index. Do not edit.
|
|
5177
5270
|
*/
|
|
5178
5271
|
|
|
5179
|
-
export { APP_ACTION_DISABLED_DIRECTIVE_KEY, APP_ACTION_DISABLED_ON_SUCCESS_DIRECTIVE_KEY, APP_ACTION_ENFORCE_MODIFIED_DIRECTIVE_KEY, AbstractDbxActionHandlerDirective, AbstractDbxActionValueOnTriggerDirective, AbstractDbxAnchorDirective, AbstractDbxButtonDirective, AbstractDbxFilterMapInstanceDirective, AbstractDbxInjectionDirective, AbstractFilterSourceConnectorDirective, AbstractFilterSourceDirective, AbstractForwardDbxInjectionContextDirective, AbstractIfDirective, AbstractLockSetSubscriptionDirective, AbstractSubscriptionDirective, AbstractTransitionDirective, AbstractTransitionWatcherDirective, ActionContextStore, ActionContextStoreSource, ActionContextStoreSourceMap, AnchorType, DBX_ACTION_HANDLER_LOCK_KEY, DBX_APP_APP_CONTEXT_STATE, DBX_APP_AUTH_ROUTER_EFFECTS_TOKEN, DBX_AUTH_APP_CONTEXT_STATE, DBX_INIT_APP_CONTEXT_STATE, DBX_INJECTION_COMPONENT_DATA, DBX_KNOWN_APP_CONTEXT_STATES, DBX_ONBOARDING_APP_CONTEXT_STATE, DBX_ONBOARD_APP_CONTEXT_STATE, DBX_PUBLIC_APP_CONTEXT_STATE, DEFAULT_ACTION_DISABLED_KEY, DEFAULT_ACTION_MAP_WORKING_DISABLED_KEY, DEFAULT_REDIRECT_FOR_IDENTIFIER_PARAM_KEY, DEFAULT_REDIRECT_FOR_IDENTIFIER_PARAM_VALUE, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_KEY, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_VALUE, DEFAULT_STORAGE_ACCESSOR_FACTORY_TOKEN, DEFAULT_STORAGE_OBJECT_TOKEN, DateDayRangePipe, DateDayTimeRangePipe, DateDistancePipe, DateFormatDistancePipe, DateFromToTimePipe, DateTimeRangeOnlyDistancePipe, DateTimeRangeOnlyPipe, DateTimeRangePipe, DbxActionAutoModifyDirective, DbxActionAutoTriggerDirective, DbxActionButtonDirective, DbxActionButtonTriggerDirective, DbxActionContextBaseSource, DbxActionContextLoggerDirective, DbxActionContextMachine, DbxActionContextMachineAsService, DbxActionContextMapDirective, DbxActionContextMapDirectiveSourceInstance, DbxActionContextStoreSourceInstance, DbxActionDirective, DbxActionDisabledDirective, DbxActionDisabledOnSuccessDirective, DbxActionEnforceModifiedDirective, DbxActionFromMapDirective, DbxActionHandlerDirective, DbxActionHandlerInstance, DbxActionHasSuccessDirective, DbxActionIsWorkingDirective, DbxActionMapSourceDirective, DbxActionMapWorkingDisableDirective, DbxActionPreSuccessDirective, DbxActionSourceDirective, DbxActionState, DbxActionSuccessHandlerDirective, DbxActionValueDirective, DbxActionValueOnTriggerInstance, DbxActionValueTriggerDirective, DbxActionWorkInstanceDelegate, DbxAnchor, DbxAngularRouterService, DbxAppAuthRouterEffects, DbxAppAuthRouterModule, DbxAppAuthRouterService, DbxAppAuthRouterStateModule, DbxAppAuthRoutes, DbxAppAuthStateModule, DbxAppAuthStateService, DbxAppContextService, DbxAppContextStateDirective, DbxAppContextStateModule, DbxAuthHasAnyRoleDirective, DbxAuthHasRolesDirective, DbxAuthNotAnyRolesDirective, DbxAuthService, DbxButton, DbxButtonDirective, DbxButtonSegueDirective, DbxCoreActionModule, DbxCoreAngularRouterSegueModule, DbxCoreAuthModule, DbxCoreButtonModule, DbxCoreFilterModule, DbxCoreUIRouterSegueModule, DbxDatePipeModule, DbxFilterConnectSourceDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterSourceDirective, DbxInjectionComponent, DbxInjectionComponentModule, DbxInjectionContext, DbxInjectionContextDirective, DbxInjectionInstance, DbxLoadingButtonDirective, DbxMiscPipeModule, DbxPipesModule, DbxRouteParamDefaultRedirectInstance, DbxRouteParamReaderInstance, DbxRouterService, DbxRouterTransitionEventType, DbxRouterTransitionService, DbxStorageModule, DbxUIRouterService, FilterSourceDirective, FullLocalStorageObject, InstantStorageAccessor, LimitedStorageAccessor, LockSetComponentStore, MemoryStorageObject, MinutesStringPipe, NO_AUTH_USER_IDENTIFIER, PrettyJsonPipe, SecondaryActionContextStoreSource, SimpleStorageAccessor, SimpleStorageAccessorFactory, StorageAccessor, StringStorageAccessor, StringifySimpleStorageAccessorConverter, TimeDistanceCountdownPipe, TimeDistancePipe, ToJsDatePipe, ToMinutesPipe, WrapperSimpleStorageAccessorDelegate, actionContextHasNoErrorAndIsModifiedAndCanTrigger, actionContextIsModifiedAndCanTrigger, actionContextStoreSourceInstanceFactory, actionContextStoreSourceMachineFactory, actionContextStoreSourcePipe, anchorTypeForAnchor, asSegueRef, asSegueRefString, authRolesSetContainsAllRolesFrom, authRolesSetContainsAnyRoleFrom, authRolesSetContainsNoRolesFrom, authUserIdentifier, canReadyValue, canTriggerAction, canTriggerActionState, checkNgContentWrapperHasContent, clickableUrlInNewTab, clickableUrlMailTo, clickableUrlTel, dbxActionValueStreamDirective, dbxButtonDisplayContentType, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, index as fromDbxAppAuth, index$2 as fromDbxAppContext, goWithRouter, hasAuthRoleDecisionPipe, isActionContextDisabled, isActionContextEnabled, isDisabledActionContextState, isIdleActionState, isLatestSuccessfulRoute, isSegueRef, isSegueRefActive, isSegueRefActiveFunction, isSegueRefActiveOnTransitionSuccess, isWorkingActionState, latestSuccessfulRoutes, loadingStateForActionContextState, loadingStateTypeForActionContextState, loadingStateTypeForActionState, loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, makeAuthTransitionHook, makeDbxActionContextSourceReference, mapRefStringObsToSegueRefObs, mergeDbxInjectionComponentConfigs, index$1 as onDbxAppAuth, index$3 as onDbxAppContext, onRouterTransitionEventType, onRouterTransitionSuccessEvent, pipeActionStore, provideActionStoreSource, provideDbxAnchor, provideDbxButton, provideDbxInjectionContext, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, tapDetectChanges, tapSafeMarkForCheck, useActionStore };
|
|
5272
|
+
export { APP_ACTION_DISABLED_DIRECTIVE_KEY, APP_ACTION_DISABLED_ON_SUCCESS_DIRECTIVE_KEY, APP_ACTION_ENFORCE_MODIFIED_DIRECTIVE_KEY, AbstractDbxActionHandlerDirective, AbstractDbxActionValueOnTriggerDirective, AbstractDbxAnchorDirective, AbstractDbxButtonDirective, AbstractDbxFilterMapInstanceDirective, AbstractDbxInjectionDirective, AbstractFilterSourceConnectorDirective, AbstractFilterSourceDirective, AbstractForwardDbxInjectionContextDirective, AbstractIfDirective, AbstractLockSetSubscriptionDirective, AbstractSubscriptionDirective, AbstractTransitionDirective, AbstractTransitionWatcherDirective, ActionContextStore, ActionContextStoreSource, ActionContextStoreSourceMap, AnchorType, AsObservablePipe, DBX_ACTION_HANDLER_LOCK_KEY, DBX_APP_APP_CONTEXT_STATE, DBX_APP_AUTH_ROUTER_EFFECTS_TOKEN, DBX_AUTH_APP_CONTEXT_STATE, DBX_INIT_APP_CONTEXT_STATE, DBX_INJECTION_COMPONENT_DATA, DBX_KNOWN_APP_CONTEXT_STATES, DBX_ONBOARDING_APP_CONTEXT_STATE, DBX_ONBOARD_APP_CONTEXT_STATE, DBX_PUBLIC_APP_CONTEXT_STATE, DEFAULT_ACTION_DISABLED_KEY, DEFAULT_ACTION_MAP_WORKING_DISABLED_KEY, DEFAULT_REDIRECT_FOR_IDENTIFIER_PARAM_KEY, DEFAULT_REDIRECT_FOR_IDENTIFIER_PARAM_VALUE, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_KEY, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_VALUE, DEFAULT_STORAGE_ACCESSOR_FACTORY_TOKEN, DEFAULT_STORAGE_OBJECT_TOKEN, DateDayRangePipe, DateDayTimeRangePipe, DateDistancePipe, DateFormatDistancePipe, DateFromToTimePipe, DateTimeRangeOnlyDistancePipe, DateTimeRangeOnlyPipe, DateTimeRangePipe, DbxActionAutoModifyDirective, DbxActionAutoTriggerDirective, DbxActionButtonDirective, DbxActionButtonTriggerDirective, DbxActionContextBaseSource, DbxActionContextLoggerDirective, DbxActionContextMachine, DbxActionContextMachineAsService, DbxActionContextMapDirective, DbxActionContextMapDirectiveSourceInstance, DbxActionContextStoreSourceInstance, DbxActionDirective, DbxActionDisabledDirective, DbxActionDisabledOnSuccessDirective, DbxActionEnforceModifiedDirective, DbxActionFromMapDirective, DbxActionHandlerDirective, DbxActionHandlerInstance, DbxActionHasSuccessDirective, DbxActionIsWorkingDirective, DbxActionMapSourceDirective, DbxActionMapWorkingDisableDirective, DbxActionPreSuccessDirective, DbxActionSourceDirective, DbxActionState, DbxActionSuccessHandlerDirective, DbxActionValueDirective, DbxActionValueOnTriggerInstance, DbxActionValueTriggerDirective, DbxActionWorkInstanceDelegate, DbxAnchor, DbxAngularRouterService, DbxAppAuthRouterEffects, DbxAppAuthRouterModule, DbxAppAuthRouterService, DbxAppAuthRouterStateModule, DbxAppAuthRoutes, DbxAppAuthStateModule, DbxAppAuthStateService, DbxAppContextService, DbxAppContextStateDirective, DbxAppContextStateModule, DbxAsyncPipeModule, DbxAuthHasAnyRoleDirective, DbxAuthHasRolesDirective, DbxAuthNotAnyRolesDirective, DbxAuthService, DbxButton, DbxButtonDirective, DbxButtonSegueDirective, DbxCoreActionModule, DbxCoreAngularRouterSegueModule, DbxCoreAuthModule, DbxCoreButtonModule, DbxCoreFilterModule, DbxCoreUIRouterSegueModule, DbxDatePipeModule, DbxFilterConnectSourceDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterSourceDirective, DbxInjectionArrayComponent, DbxInjectionComponent, DbxInjectionComponentModule, DbxInjectionContext, DbxInjectionContextDirective, DbxInjectionInstance, DbxLoadingButtonDirective, DbxMiscPipeModule, DbxPipesModule, DbxRouteParamDefaultRedirectInstance, DbxRouteParamReaderInstance, DbxRouterService, DbxRouterTransitionEventType, DbxRouterTransitionService, DbxStorageModule, DbxUIRouterService, FilterSourceDirective, FullLocalStorageObject, InstantStorageAccessor, LimitedStorageAccessor, LockSetComponentStore, MemoryStorageObject, MinutesStringPipe, NO_AUTH_USER_IDENTIFIER, PrettyJsonPipe, SecondaryActionContextStoreSource, SimpleStorageAccessor, SimpleStorageAccessorFactory, StorageAccessor, StringStorageAccessor, StringifySimpleStorageAccessorConverter, TimeDistanceCountdownPipe, TimeDistancePipe, ToJsDatePipe, ToMinutesPipe, WrapperSimpleStorageAccessorDelegate, actionContextHasNoErrorAndIsModifiedAndCanTrigger, actionContextIsModifiedAndCanTrigger, actionContextStoreSourceInstanceFactory, actionContextStoreSourceMachineFactory, actionContextStoreSourcePipe, anchorTypeForAnchor, asSegueRef, asSegueRefString, authRolesSetContainsAllRolesFrom, authRolesSetContainsAnyRoleFrom, authRolesSetContainsNoRolesFrom, authUserIdentifier, canReadyValue, canTriggerAction, canTriggerActionState, checkNgContentWrapperHasContent, clickableUrlInNewTab, clickableUrlMailTo, clickableUrlTel, dbxActionValueStreamDirective, dbxButtonDisplayContentType, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, index as fromDbxAppAuth, index$2 as fromDbxAppContext, goWithRouter, hasAuthRoleDecisionPipe, isActionContextDisabled, isActionContextEnabled, isDisabledActionContextState, isIdleActionState, isLatestSuccessfulRoute, isSegueRef, isSegueRefActive, isSegueRefActiveFunction, isSegueRefActiveOnTransitionSuccess, isWorkingActionState, latestSuccessfulRoutes, loadingStateForActionContextState, loadingStateTypeForActionContextState, loadingStateTypeForActionState, loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, makeAuthTransitionHook, makeDbxActionContextSourceReference, mapRefStringObsToSegueRefObs, mergeDbxInjectionComponentConfigs, index$1 as onDbxAppAuth, index$3 as onDbxAppContext, onRouterTransitionEventType, onRouterTransitionSuccessEvent, pipeActionStore, provideActionStoreSource, provideDbxAnchor, provideDbxButton, provideDbxInjectionContext, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, switchMapDbxInjectionComponentConfig, tapDetectChanges, tapSafeMarkForCheck, useActionStore };
|
|
5180
5273
|
//# sourceMappingURL=dereekb-dbx-core.mjs.map
|