@dereekb/dbx-core 9.15.7 → 9.16.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.
Files changed (58) hide show
  1. package/esm2020/lib/action/action.holder.mjs +1 -1
  2. package/esm2020/lib/action/action.machine.mjs +30 -7
  3. package/esm2020/lib/action/action.store.source.mjs +2 -30
  4. package/esm2020/lib/action/action.store.source.provide.mjs +41 -0
  5. package/esm2020/lib/action/directive/context/action.directive.mjs +3 -2
  6. package/esm2020/lib/action/directive/context/action.source.directive.mjs +3 -2
  7. package/esm2020/lib/action/directive/map/action.map.key.directive.mjs +2 -2
  8. package/esm2020/lib/action/directive/state/action.handler.directive.mjs +27 -34
  9. package/esm2020/lib/action/directive/state/action.handler.instance.mjs +40 -0
  10. package/esm2020/lib/action/directive/state/index.mjs +2 -1
  11. package/esm2020/lib/action/index.mjs +2 -1
  12. package/esm2020/lib/filter/filter.abstract.source.directive.mjs +19 -4
  13. package/esm2020/lib/filter/filter.connect.source.directive.mjs +27 -0
  14. package/esm2020/lib/filter/filter.map.source.directive.mjs +3 -3
  15. package/esm2020/lib/filter/filter.module.mjs +5 -4
  16. package/esm2020/lib/filter/filter.preset.mjs +2 -0
  17. package/esm2020/lib/filter/filter.source.directive.mjs +4 -5
  18. package/esm2020/lib/filter/index.mjs +3 -2
  19. package/esm2020/lib/router/anchor/anchor.directive.mjs +14 -3
  20. package/esm2020/lib/router/anchor/anchor.mjs +1 -1
  21. package/esm2020/lib/router/anchor/clickable.mjs +7 -2
  22. package/esm2020/lib/router/router/provider/uirouter/uirouter.router.service.mjs +1 -1
  23. package/esm2020/lib/router/router/service/index.mjs +3 -1
  24. package/esm2020/lib/router/router/service/router.service.mjs +3 -2
  25. package/esm2020/lib/router/router/service/router.service.rxjs.mjs +39 -0
  26. package/esm2020/lib/router/router/service/router.service.util.mjs +14 -0
  27. package/esm2020/lib/router/router/transition/transition.mjs +2 -2
  28. package/fesm2015/dereekb-dbx-core.mjs +403 -260
  29. package/fesm2015/dereekb-dbx-core.mjs.map +1 -1
  30. package/fesm2020/dereekb-dbx-core.mjs +399 -258
  31. package/fesm2020/dereekb-dbx-core.mjs.map +1 -1
  32. package/lib/action/action.holder.d.ts +1 -1
  33. package/lib/action/action.machine.d.ts +14 -1
  34. package/lib/action/action.store.source.d.ts +1 -7
  35. package/lib/action/action.store.source.provide.d.ts +10 -0
  36. package/lib/action/directive/state/action.handler.directive.d.ts +14 -9
  37. package/lib/action/directive/state/action.handler.instance.d.ts +19 -0
  38. package/lib/action/directive/state/index.d.ts +1 -0
  39. package/lib/action/index.d.ts +1 -0
  40. package/lib/filter/filter.abstract.source.directive.d.ts +14 -3
  41. package/lib/filter/filter.connect.source.directive.d.ts +14 -0
  42. package/lib/filter/filter.map.source.directive.d.ts +1 -1
  43. package/lib/filter/filter.module.d.ts +7 -6
  44. package/lib/filter/filter.preset.d.ts +11 -0
  45. package/lib/filter/index.d.ts +2 -1
  46. package/lib/router/anchor/anchor.d.ts +3 -0
  47. package/lib/router/anchor/anchor.directive.d.ts +5 -1
  48. package/lib/router/anchor/clickable.d.ts +2 -1
  49. package/lib/router/router/service/index.d.ts +2 -0
  50. package/lib/router/router/service/router.service.d.ts +2 -1
  51. package/lib/router/router/service/router.service.rxjs.d.ts +27 -0
  52. package/lib/router/router/service/router.service.util.d.ts +26 -0
  53. package/lib/router/router/transition/transition.d.ts +1 -1
  54. package/package.json +4 -4
  55. package/esm2020/lib/filter/action/action.filter.source.directive.mjs +0 -33
  56. package/esm2020/lib/filter/action/index.mjs +0 -2
  57. package/lib/filter/action/action.filter.source.directive.d.ts +0 -17
  58. package/lib/filter/action/index.d.ts +0 -1
@@ -1,9 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Directive, Injectable, forwardRef, Host, Input, Optional, NgModule, InjectionToken, Inject, EventEmitter, Output, LOCALE_ID, Pipe, ViewChild, Injector, ViewContainerRef, Component } from '@angular/core';
2
+ import { Directive, Injectable, Host, Input, forwardRef, Optional, NgModule, InjectionToken, Inject, EventEmitter, Output, LOCALE_ID, Pipe, Injector, ViewContainerRef, Component, ViewChild } from '@angular/core';
3
3
  import * as i1 from 'rxjs';
4
- import { switchMap, first, BehaviorSubject, combineLatest, distinctUntilChanged, filter, Subject, debounce, interval, throttle, exhaustMap, mergeMap, map, shareReplay, EMPTY, withLatestFrom, of, startWith, tap, delay, catchError, firstValueFrom, takeUntil, Observable } from 'rxjs';
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, combineLatestFromMapValuesObsFn, workFactory, emitDelayObs, asObservable, returnIfIs, timeoutStartWith, skipFirstMaybe, maybeValueFromObservableOrValueGetter, switchMapToDefault, asObservableFromGetter, onFalseToTrue, onTrueToFalse, setContainsAllValuesFrom, setContainsNoValueFrom, FilterSourceInstance, FilterSource, FilterSourceConnector, FilterMap } from '@dereekb/rxjs';
6
+ import { SubscriptionObject, LockSet, filterMaybe, LoadingStateType, beginLoading, idleLoadingState, errorResult, successResult, scanCount, workFactory, combineLatestFromMapValuesObsFn, emitDelayObs, asObservable, returnIfIs, timeoutStartWith, skipFirstMaybe, maybeValueFromObservableOrValueGetter, switchMapToDefault, asObservableFromGetter, onFalseToTrue, onTrueToFalse, setContainsAllValuesFrom, setContainsNoValueFrom, FilterSource, FilterSourceConnector, FilterSourceInstance, FilterMap } from '@dereekb/rxjs';
7
7
  import * as i1$6 from '@dereekb/util';
8
8
  import { isDefinedAndNotFalse, hasValueOrNotEmpty, BooleanStringKeyArrayUtilityInstance, reduceBooleansWithOrFn, getValueFromGetter, toReadableError, isGetter, setIncludes, isAllowed, maybeSet, expandTreeFunction, flattenTreeToArrayFunction, expandFlattenTreeFunction, mergeObjects, KeyValueTypleValueFilter, asArray, defaultForwardFunctionFactory, mergeArrays, filterMaybeValues, mergeArrayOrValueIntoArray, promiseReference, DataIsExpiredError, DataDoesNotExistError, hasNonNullValue, splitJoinRemainder, StorageObjectUtility, SHARED_MEMORY_STORAGE } from '@dereekb/util';
9
9
  import { ComponentStore } from '@ngrx/component-store';
@@ -199,34 +199,6 @@ DbxActionContextStoreSourceInstance.ɵprov = i0.ɵɵngDeclareInjectable({ minVer
199
199
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxActionContextStoreSourceInstance, decorators: [{
200
200
  type: Injectable
201
201
  }], ctorParameters: function () { return [{ type: ActionContextStoreSource }]; } });
202
- const actionContextStoreSourceInstanceFactory = (source) => {
203
- return new DbxActionContextStoreSourceInstance(source);
204
- };
205
- /**
206
- * Provides an ActionContextStoreSource, as well as an DbxActionContextStoreSourceInstance.
207
- */
208
- function provideActionStoreSource(sourceType) {
209
- return [
210
- {
211
- provide: ActionContextStoreSource,
212
- useExisting: forwardRef(() => sourceType)
213
- },
214
- {
215
- provide: DbxActionContextStoreSourceInstance,
216
- useFactory: actionContextStoreSourceInstanceFactory,
217
- deps: [ActionContextStoreSource]
218
- }
219
- ];
220
- }
221
- function provideSecondaryActionStoreSource(sourceType) {
222
- return [
223
- {
224
- provide: SecondaryActionContextStoreSource,
225
- useExisting: forwardRef(() => sourceType)
226
- },
227
- ...provideActionStoreSource(sourceType)
228
- ];
229
- }
230
202
 
231
203
  class DbxActionAutoModifyDirective extends AbstractSubscriptionDirective {
232
204
  constructor(source) {
@@ -467,6 +439,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
467
439
  type: Input
468
440
  }] } });
469
441
 
442
+ /**
443
+ * WorkInstanceDelegate implementation using an DbxActionContextStoreSourceInstance.
444
+ */
445
+ class DbxActionWorkInstanceDelegate {
446
+ constructor(source) {
447
+ this.source = source;
448
+ }
449
+ startWorking() {
450
+ this.source.startWorking();
451
+ }
452
+ success(result) {
453
+ this.source.resolve(result);
454
+ }
455
+ reject(error) {
456
+ this.source.reject(error);
457
+ }
458
+ }
459
+
470
460
  /**
471
461
  * Used by ActionContextState to denote what state the action is in.
472
462
  */
@@ -813,6 +803,106 @@ class DbxActionContextBaseSource {
813
803
  }
814
804
  }
815
805
 
806
+ /**
807
+ * Configurable machine that handles components of the ActionContextStore lifecycle.
808
+ *
809
+ * It can be configured to activate only once before cleaning itself up. It can be used directly as a DbxActionContextSourceReference in cases where it is created as a one-off action.
810
+ */
811
+ class DbxActionContextMachine extends DbxActionContextBaseSource {
812
+ constructor(config, source) {
813
+ super(source);
814
+ this.config = config;
815
+ this._isShutdown = true;
816
+ this._handleValueReadySub = new SubscriptionObject();
817
+ this._successSub = new SubscriptionObject();
818
+ // Handle Value Ready
819
+ if (config.handleValueReady !== false) {
820
+ this._handleValueReadySub.subscription = this.sourceInstance.valueReady$.subscribe((value) => {
821
+ const doWork = workFactory({
822
+ work: config.handleValueReady,
823
+ delegate: new DbxActionWorkInstanceDelegate(this.sourceInstance)
824
+ });
825
+ doWork(value);
826
+ });
827
+ }
828
+ // If this is a one-time use, then destroy it after the first success comes through.
829
+ if (this.config.oneTimeUse) {
830
+ this.sourceInstance.success$.pipe(first(), delay(1000)).subscribe(() => {
831
+ this.destroy();
832
+ });
833
+ }
834
+ if (this.config.onSuccess) {
835
+ this._successSub.subscription = this.sourceInstance.success$.subscribe(this.config.onSuccess);
836
+ }
837
+ }
838
+ destroy() {
839
+ super.destroy();
840
+ this._handleValueReadySub.destroy();
841
+ this._successSub.destroy();
842
+ this._isShutdown = true;
843
+ }
844
+ get isShutdown() {
845
+ return this._isShutdown;
846
+ }
847
+ }
848
+ /**
849
+ * DbxActionContextMachine that implements OnDestroy and is configured for use as a Service/Injectable.
850
+ */
851
+ class DbxActionContextMachineAsService extends DbxActionContextMachine {
852
+ constructor() {
853
+ super({
854
+ oneTimeUse: false,
855
+ handleValueReady: false
856
+ });
857
+ }
858
+ ngOnDestroy() {
859
+ this.destroy();
860
+ }
861
+ }
862
+ DbxActionContextMachineAsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxActionContextMachineAsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
863
+ DbxActionContextMachineAsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxActionContextMachineAsService });
864
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxActionContextMachineAsService, decorators: [{
865
+ type: Injectable
866
+ }], ctorParameters: function () { return []; } });
867
+
868
+ const actionContextStoreSourceInstanceFactory = (source) => {
869
+ return new DbxActionContextStoreSourceInstance(source);
870
+ };
871
+ const actionContextStoreSourceMachineFactory = () => {
872
+ return new DbxActionContextMachineAsService();
873
+ };
874
+ /**
875
+ * Provides an ActionContextStoreSource, as well as an DbxActionContextStoreSourceInstance.
876
+ */
877
+ function provideActionStoreSource(sourceType) {
878
+ const storeSourceProvider = sourceType != null
879
+ ? {
880
+ provide: ActionContextStoreSource,
881
+ useExisting: forwardRef(() => sourceType)
882
+ }
883
+ : {
884
+ provide: ActionContextStoreSource,
885
+ useFactory: actionContextStoreSourceMachineFactory
886
+ };
887
+ return [
888
+ storeSourceProvider,
889
+ {
890
+ provide: DbxActionContextStoreSourceInstance,
891
+ useFactory: actionContextStoreSourceInstanceFactory,
892
+ deps: [ActionContextStoreSource]
893
+ }
894
+ ];
895
+ }
896
+ function provideSecondaryActionStoreSource(sourceType) {
897
+ return [
898
+ {
899
+ provide: SecondaryActionContextStoreSource,
900
+ useExisting: forwardRef(() => sourceType)
901
+ },
902
+ ...provideActionStoreSource(sourceType)
903
+ ];
904
+ }
905
+
816
906
  /**
817
907
  * Provides an DbxActionContext.
818
908
  */
@@ -1166,31 +1256,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
1166
1256
  args: ['dbxActionDisabledOnSuccess']
1167
1257
  }] } });
1168
1258
 
1259
+ const DBX_ACTION_HANDLER_LOCK_KEY = 'dbxActionHandler';
1169
1260
  /**
1170
- * WorkInstanceDelegate implementation using an DbxActionContextStoreSourceInstance.
1261
+ * Context used for defining a function that performs an action using the input function to handle valueReady$ events from an action context.
1171
1262
  */
1172
- class DbxActionWorkInstanceDelegate {
1263
+ class DbxActionHandlerInstance {
1173
1264
  constructor(source) {
1174
1265
  this.source = source;
1175
- }
1176
- startWorking() {
1177
- this.source.startWorking();
1178
- }
1179
- success(result) {
1180
- this.source.resolve(result);
1181
- }
1182
- reject(error) {
1183
- this.source.reject(error);
1184
- }
1185
- }
1186
-
1187
- /**
1188
- * Context used for defining a function that performs an action using the input function on ValueReady.
1189
- */
1190
- class DbxActionHandlerDirective extends AbstractSubscriptionDirective {
1191
- constructor(source) {
1192
- super();
1193
- this.source = source;
1266
+ this._sub = new SubscriptionObject();
1194
1267
  this._handlerFunction = new BehaviorSubject(undefined);
1195
1268
  this.handlerFunction$ = this._handlerFunction.pipe(filterMaybe(), shareReplay(1));
1196
1269
  this._delegate = new DbxActionWorkInstanceDelegate(this.source);
@@ -1201,34 +1274,66 @@ class DbxActionHandlerDirective extends AbstractSubscriptionDirective {
1201
1274
  set handlerFunction(handlerFunction) {
1202
1275
  this._handlerFunction.next(handlerFunction);
1203
1276
  }
1204
- ngOnInit() {
1205
- this.sub = this.handlerFunction$
1277
+ init() {
1278
+ this._sub.subscription = this.handlerFunction$
1206
1279
  .pipe(switchMap((work) => this.source.valueReady$.pipe(tap((value) => {
1207
1280
  const context = workFactory({ work, delegate: this._delegate })(value);
1208
1281
  if (context) {
1209
1282
  // Add the action to the lockSet for the source to prevent it from being destroyed until the action completes.
1210
- this.source.lockSet.addLock('dbxActionHandler', context.isComplete$.pipe(map((x) => !x)));
1283
+ this.source.lockSet.addLock(DBX_ACTION_HANDLER_LOCK_KEY, context.isComplete$.pipe(map((x) => !x)));
1211
1284
  }
1212
1285
  }))))
1213
1286
  .subscribe();
1214
1287
  }
1215
- ngOnDestroy() {
1288
+ destroy() {
1216
1289
  this.source.lockSet.onNextUnlock(() => {
1217
- super.ngOnDestroy();
1290
+ this._sub.destroy();
1218
1291
  this._handlerFunction.complete();
1219
1292
  });
1220
1293
  }
1221
1294
  }
1222
- DbxActionHandlerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxActionHandlerDirective, deps: [{ token: DbxActionContextStoreSourceInstance, host: true }], target: i0.ɵɵFactoryTarget.Directive });
1295
+
1296
+ /**
1297
+ * Abstract directive that wraps and handles a DbxActionHandlerInstance lifecycle.
1298
+ */
1299
+ class AbstractDbxActionHandlerDirective {
1300
+ constructor(source) {
1301
+ this.source = source;
1302
+ this._dbxActionHandlerInstance = new DbxActionHandlerInstance(this.source);
1303
+ }
1304
+ ngOnInit() {
1305
+ this._dbxActionHandlerInstance.init();
1306
+ }
1307
+ ngOnDestroy() {
1308
+ this._dbxActionHandlerInstance.destroy();
1309
+ }
1310
+ }
1311
+ AbstractDbxActionHandlerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractDbxActionHandlerDirective, deps: [{ token: DbxActionContextStoreSourceInstance, host: true }], target: i0.ɵɵFactoryTarget.Directive });
1312
+ AbstractDbxActionHandlerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractDbxActionHandlerDirective, ngImport: i0 });
1313
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractDbxActionHandlerDirective, decorators: [{
1314
+ type: Directive
1315
+ }], ctorParameters: function () { return [{ type: DbxActionContextStoreSourceInstance, decorators: [{
1316
+ type: Host
1317
+ }] }]; } });
1318
+ /**
1319
+ * Directive that wraps and controls a DbxActionHandlerInstance.
1320
+ */
1321
+ class DbxActionHandlerDirective extends AbstractDbxActionHandlerDirective {
1322
+ get handlerFunction() {
1323
+ return this._dbxActionHandlerInstance.handlerFunction;
1324
+ }
1325
+ set handlerFunction(handlerFunction) {
1326
+ this._dbxActionHandlerInstance.handlerFunction = handlerFunction;
1327
+ }
1328
+ }
1329
+ DbxActionHandlerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxActionHandlerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1223
1330
  DbxActionHandlerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: DbxActionHandlerDirective, selector: "[dbxActionHandler]", inputs: { handlerFunction: ["dbxActionHandler", "handlerFunction"] }, usesInheritance: true, ngImport: i0 });
1224
1331
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxActionHandlerDirective, decorators: [{
1225
1332
  type: Directive,
1226
1333
  args: [{
1227
1334
  selector: '[dbxActionHandler]'
1228
1335
  }]
1229
- }], ctorParameters: function () { return [{ type: DbxActionContextStoreSourceInstance, decorators: [{
1230
- type: Host
1231
- }] }]; }, propDecorators: { handlerFunction: [{
1336
+ }], propDecorators: { handlerFunction: [{
1232
1337
  type: Input,
1233
1338
  args: ['dbxActionHandler']
1234
1339
  }] } });
@@ -1593,47 +1698,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
1593
1698
  type: Input
1594
1699
  }] } });
1595
1700
 
1596
- /**
1597
- * Configurable machine that handles components of the ActionContextStore lifecycle.
1598
- *
1599
- * It can be configured to activate only once before cleaning itself up. It can be used directly as a DbxActionContextSourceReference in cases where it is created as a one-off action.
1600
- */
1601
- class DbxActionContextMachine extends DbxActionContextBaseSource {
1602
- constructor(config, source) {
1603
- super(source);
1604
- this.config = config;
1605
- this._isShutdown = true;
1606
- this._handleValueReadySub = new SubscriptionObject();
1607
- this._successSub = new SubscriptionObject();
1608
- // Handle Value Ready
1609
- this._handleValueReadySub.subscription = this.sourceInstance.valueReady$.subscribe((value) => {
1610
- const doWork = workFactory({
1611
- work: config.handleValueReady,
1612
- delegate: new DbxActionWorkInstanceDelegate(this.sourceInstance)
1613
- });
1614
- doWork(value);
1615
- });
1616
- // If this is a one-time use, then destroy it after the first success comes through.
1617
- if (this.config.oneTimeUse) {
1618
- this.sourceInstance.success$.pipe(first(), delay(1000)).subscribe(() => {
1619
- this.destroy();
1620
- });
1621
- }
1622
- if (this.config.onSuccess) {
1623
- this._successSub.subscription = this.sourceInstance.success$.subscribe(this.config.onSuccess);
1624
- }
1625
- }
1626
- destroy() {
1627
- super.destroy();
1628
- this._handleValueReadySub.destroy();
1629
- this._successSub.destroy();
1630
- this._isShutdown = true;
1631
- }
1632
- get isShutdown() {
1633
- return this._isShutdown;
1634
- }
1635
- }
1636
-
1637
1701
  class DbxCoreActionModule {
1638
1702
  }
1639
1703
  DbxCoreActionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxCoreActionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -2252,13 +2316,16 @@ function provideDbxAnchor(sourceType) {
2252
2316
  */
2253
2317
  class AbstractDbxAnchorDirective {
2254
2318
  constructor() {
2319
+ this._selected = new BehaviorSubject(false);
2255
2320
  this._disabled = new BehaviorSubject(false);
2256
2321
  this._anchor = new BehaviorSubject(undefined);
2257
- this.disabled$ = this._disabled.asObservable();
2322
+ this.disabled$ = this._disabled.pipe(distinctUntilChanged());
2258
2323
  this.anchor$ = this._anchor.pipe(skipFirstMaybe(), distinctUntilChanged(), shareReplay(1));
2324
+ this.selected$ = combineLatest([this._selected, this.anchor$]).pipe(map(([selected, anchor]) => selected || anchor?.selected), distinctUntilChanged());
2259
2325
  this.type$ = combineLatest([this.disabled$, this.anchor$]).pipe(delay(0), map(([disabled, anchor]) => anchorTypeForAnchor(anchor, disabled)), distinctUntilChanged(), shareReplay(1));
2260
2326
  }
2261
2327
  ngOnDestroy() {
2328
+ this._selected.complete();
2262
2329
  this._disabled.complete();
2263
2330
  this._anchor.complete();
2264
2331
  }
@@ -2280,9 +2347,15 @@ class AbstractDbxAnchorDirective {
2280
2347
  set disabled(disabled) {
2281
2348
  this._disabled.next(disabled);
2282
2349
  }
2350
+ get selected() {
2351
+ return this._selected.value;
2352
+ }
2353
+ set selected(selected) {
2354
+ this._selected.next(selected);
2355
+ }
2283
2356
  }
2284
2357
  AbstractDbxAnchorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractDbxAnchorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2285
- AbstractDbxAnchorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractDbxAnchorDirective, inputs: { ref: "ref", anchor: "anchor", disabled: "disabled" }, ngImport: i0 });
2358
+ AbstractDbxAnchorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractDbxAnchorDirective, inputs: { ref: "ref", anchor: "anchor", disabled: "disabled", selected: "selected" }, ngImport: i0 });
2286
2359
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractDbxAnchorDirective, decorators: [{
2287
2360
  type: Directive
2288
2361
  }], propDecorators: { ref: [{
@@ -2291,8 +2364,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
2291
2364
  type: Input
2292
2365
  }], disabled: [{
2293
2366
  type: Input
2367
+ }], selected: [{
2368
+ type: Input
2294
2369
  }] } });
2295
2370
 
2371
+ function clickableUrlInNewTab(url) {
2372
+ return {
2373
+ url,
2374
+ target: '_blank'
2375
+ };
2376
+ }
2377
+
2296
2378
  const DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_VALUE = '0';
2297
2379
  const DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_KEY = 'uid';
2298
2380
  /**
@@ -2355,7 +2437,7 @@ var DbxRouterTransitionEventType;
2355
2437
  /**
2356
2438
  * A transition ended.
2357
2439
  */
2358
- DbxRouterTransitionEventType["SUCCESS"] = "ended";
2440
+ DbxRouterTransitionEventType["SUCCESS"] = "success";
2359
2441
  })(DbxRouterTransitionEventType || (DbxRouterTransitionEventType = {}));
2360
2442
 
2361
2443
  /**
@@ -2429,10 +2511,142 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
2429
2511
  type: Injectable
2430
2512
  }], ctorParameters: function () { return [{ type: i1$1.Router }, { type: i1$1.ActivatedRoute }]; } });
2431
2513
 
2514
+ /**
2515
+ * Router service definition that provides high level information about router transitions.
2516
+ */
2517
+ class DbxRouterTransitionService {
2518
+ }
2519
+
2432
2520
  /**
2433
2521
  * Router service definition that can route the app and provide routing details.
2434
2522
  */
2435
- class DbxRouterService {
2523
+ class DbxRouterService extends DbxRouterTransitionService {
2524
+ }
2525
+
2526
+ /**
2527
+ * Convenience function for filtering success from the input observable.
2528
+ *
2529
+ * @param obs
2530
+ * @returns
2531
+ */
2532
+ function successTransition(obs) {
2533
+ return obs.pipe(filterTransitionSuccess());
2534
+ }
2535
+ function filterTransitionSuccess() {
2536
+ return filterTransitionEvent(DbxRouterTransitionEventType.SUCCESS);
2537
+ }
2538
+ function filterTransitionEvent(type) {
2539
+ return filter((x) => x.type === type);
2540
+ }
2541
+ /**
2542
+ * Creates a new observable that uses the input DbxRouterTransitionService and DbxRouterService to determine whether or not any of the configured routes are active.
2543
+ *
2544
+ * @param obs
2545
+ * @param config
2546
+ * @returns
2547
+ */
2548
+ function isLatestSuccessfulRoute(config) {
2549
+ const { dbxRouterTransitionService, dbxRouterService, activeExactly } = config;
2550
+ const routes = asArray(config.routes);
2551
+ const checkRoute = activeExactly ? (route) => dbxRouterService.isActiveExactly(route) : (route) => dbxRouterService.isActive(route);
2552
+ return successTransition(dbxRouterTransitionService.transitions$).pipe(startWith(undefined), map(() => {
2553
+ const isActive = routes.findIndex(checkRoute) !== -1;
2554
+ return isActive;
2555
+ }), distinctUntilChanged(), shareReplay(1));
2556
+ }
2557
+
2558
+ /**
2559
+ * Abstract directive that listens to onSuccess transition events and runs a function.
2560
+ */
2561
+ class AbstractTransitionDirective {
2562
+ constructor(dbxRouterTransitionService) {
2563
+ this.dbxRouterTransitionService = dbxRouterTransitionService;
2564
+ this.transitionSuccess$ = successTransition(this.dbxRouterTransitionService.transitions$);
2565
+ this.initAndUpdateOnTransitionSuccess$ = this.transitionSuccess$.pipe(startWith(undefined));
2566
+ }
2567
+ }
2568
+ AbstractTransitionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionDirective, deps: [{ token: DbxRouterTransitionService }], target: i0.ɵɵFactoryTarget.Directive });
2569
+ AbstractTransitionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractTransitionDirective, ngImport: i0 });
2570
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionDirective, decorators: [{
2571
+ type: Directive
2572
+ }], ctorParameters: function () { return [{ type: DbxRouterTransitionService }]; } });
2573
+
2574
+ /**
2575
+ * Abstract directive that listens to onSuccess transition events and runs a function.
2576
+ */
2577
+ class AbstractTransitionWatcherDirective extends AbstractTransitionDirective {
2578
+ constructor(dbxRouterTransitionService, ngZone) {
2579
+ super(dbxRouterTransitionService);
2580
+ this.ngZone = ngZone;
2581
+ this._transitionSub = new SubscriptionObject();
2582
+ }
2583
+ ngOnInit() {
2584
+ this._transitionSub.subscription = this.transitionSuccess$.subscribe(() => {
2585
+ this.updateForSuccessfulTransition();
2586
+ });
2587
+ }
2588
+ ngOnDestroy() {
2589
+ this._transitionSub.destroy();
2590
+ }
2591
+ // MARK: Action
2592
+ zoneUpdateForSuccessfulTransition() {
2593
+ this.ngZone.run(() => this.updateForSuccessfulTransition());
2594
+ }
2595
+ }
2596
+ AbstractTransitionWatcherDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionWatcherDirective, deps: [{ token: DbxRouterTransitionService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
2597
+ AbstractTransitionWatcherDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractTransitionWatcherDirective, usesInheritance: true, ngImport: i0 });
2598
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionWatcherDirective, decorators: [{
2599
+ type: Directive
2600
+ }], ctorParameters: function () { return [{ type: DbxRouterTransitionService }, { type: i0.NgZone }]; } });
2601
+
2602
+ /**
2603
+ * Creates an IsSegueRefActiveFunction
2604
+ *
2605
+ * @param config
2606
+ * @returns
2607
+ */
2608
+ function isSegueRefActiveFunction(config) {
2609
+ const { dbxRouterService, segueRef, activeExactly = false } = config;
2610
+ const result = (activeExactly ? () => dbxRouterService.isActiveExactly(segueRef) : () => dbxRouterService.isActive(segueRef));
2611
+ result._segueRef = segueRef;
2612
+ result._activeExactly = activeExactly;
2613
+ return result;
2614
+ }
2615
+
2616
+ // MARK: Transition Events
2617
+ function onRouterTransitionEventType(events$, type) {
2618
+ return events$.pipe(filter((x) => x.type === type));
2619
+ }
2620
+ function onRouterTransitionSuccessEvent(events$) {
2621
+ return onRouterTransitionEventType(events$, DbxRouterTransitionEventType.SUCCESS);
2622
+ }
2623
+ // MARK: Router Service
2624
+ /**
2625
+ * Creates an observable that returns true when the route for the input segueRef is active.
2626
+ *
2627
+ * @param dbxRouterService
2628
+ * @param segueRef
2629
+ */
2630
+ function isSegueRefActiveOnTransitionSuccess(config) {
2631
+ const isActiveFn = isSegueRefActiveFunction(config);
2632
+ return onRouterTransitionSuccessEvent(config.dbxRouterService.transitions$).pipe(startWith(undefined), map(() => isActiveFn()));
2633
+ }
2634
+ /**
2635
+ * Operator function that maps the input segueRef to a boolean depending on the current route state.
2636
+ *
2637
+ * @param dbxRouterService
2638
+ * @param segueRef
2639
+ */
2640
+ function isSegueRefActive(config) {
2641
+ const { defaultIfNull = false } = config;
2642
+ return switchMap((segueRef) => {
2643
+ if (segueRef) {
2644
+ return isSegueRefActiveOnTransitionSuccess({ ...config, segueRef });
2645
+ }
2646
+ else {
2647
+ return of(defaultIfNull);
2648
+ }
2649
+ });
2436
2650
  }
2437
2651
 
2438
2652
  /**
@@ -2447,12 +2661,6 @@ function goWithRouter(dbxRouterService) {
2447
2661
  };
2448
2662
  }
2449
2663
 
2450
- /**
2451
- * Router service definition that provides high level information about router transitions.
2452
- */
2453
- class DbxRouterTransitionService {
2454
- }
2455
-
2456
2664
  class DbxCoreAngularRouterSegueModule {
2457
2665
  static forRoot() {
2458
2666
  return {
@@ -2592,82 +2800,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
2592
2800
  args: [{}]
2593
2801
  }] });
2594
2802
 
2595
- /**
2596
- * Convenience function for filtering success from the input observable.
2597
- *
2598
- * @param obs
2599
- * @returns
2600
- */
2601
- function successTransition(obs) {
2602
- return obs.pipe(filterTransitionSuccess());
2603
- }
2604
- function filterTransitionSuccess() {
2605
- return filterTransitionEvent(DbxRouterTransitionEventType.SUCCESS);
2606
- }
2607
- function filterTransitionEvent(type) {
2608
- return filter((x) => x.type === type);
2609
- }
2610
- /**
2611
- * Creates a new observable that uses the input DbxRouterTransitionService and DbxRouterService to determine whether or not any of the configured routes are active.
2612
- *
2613
- * @param obs
2614
- * @param config
2615
- * @returns
2616
- */
2617
- function isLatestSuccessfulRoute(config) {
2618
- const { dbxRouterTransitionService, dbxRouterService, activeExactly } = config;
2619
- const routes = asArray(config.routes);
2620
- const checkRoute = activeExactly ? (route) => dbxRouterService.isActiveExactly(route) : (route) => dbxRouterService.isActive(route);
2621
- return successTransition(dbxRouterTransitionService.transitions$).pipe(startWith(undefined), map(() => {
2622
- const isActive = routes.findIndex(checkRoute) !== -1;
2623
- return isActive;
2624
- }), distinctUntilChanged(), shareReplay(1));
2625
- }
2626
-
2627
- /**
2628
- * Abstract directive that listens to onSuccess transition events and runs a function.
2629
- */
2630
- class AbstractTransitionDirective {
2631
- constructor(dbxRouterTransitionService) {
2632
- this.dbxRouterTransitionService = dbxRouterTransitionService;
2633
- this.transitionSuccess$ = successTransition(this.dbxRouterTransitionService.transitions$);
2634
- this.initAndUpdateOnTransitionSuccess$ = this.transitionSuccess$.pipe(startWith(undefined));
2635
- }
2636
- }
2637
- AbstractTransitionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionDirective, deps: [{ token: DbxRouterTransitionService }], target: i0.ɵɵFactoryTarget.Directive });
2638
- AbstractTransitionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractTransitionDirective, ngImport: i0 });
2639
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionDirective, decorators: [{
2640
- type: Directive
2641
- }], ctorParameters: function () { return [{ type: DbxRouterTransitionService }]; } });
2642
-
2643
- /**
2644
- * Abstract directive that listens to onSuccess transition events and runs a function.
2645
- */
2646
- class AbstractTransitionWatcherDirective extends AbstractTransitionDirective {
2647
- constructor(dbxRouterTransitionService, ngZone) {
2648
- super(dbxRouterTransitionService);
2649
- this.ngZone = ngZone;
2650
- this._transitionSub = new SubscriptionObject();
2651
- }
2652
- ngOnInit() {
2653
- this._transitionSub.subscription = this.transitionSuccess$.subscribe(() => {
2654
- this.updateForSuccessfulTransition();
2655
- });
2656
- }
2657
- ngOnDestroy() {
2658
- this._transitionSub.destroy();
2659
- }
2660
- // MARK: Action
2661
- zoneUpdateForSuccessfulTransition() {
2662
- this.ngZone.run(() => this.updateForSuccessfulTransition());
2663
- }
2664
- }
2665
- AbstractTransitionWatcherDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionWatcherDirective, deps: [{ token: DbxRouterTransitionService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
2666
- AbstractTransitionWatcherDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractTransitionWatcherDirective, usesInheritance: true, ngImport: i0 });
2667
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractTransitionWatcherDirective, decorators: [{
2668
- type: Directive
2669
- }], ctorParameters: function () { return [{ type: DbxRouterTransitionService }, { type: i0.NgZone }]; } });
2670
-
2671
2803
  /**
2672
2804
  * Utility class used for reading a single value from the DbxRouterService.
2673
2805
  */
@@ -3798,68 +3930,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
3798
3930
  }]
3799
3931
  }] });
3800
3932
 
3801
- /**
3802
- * Abstract FilterSource implementation.
3803
- */
3804
- class AbstractFilterSourceDirective {
3805
- constructor() {
3806
- this._defaultFilterSource = new FilterSourceInstance();
3807
- this.filter$ = this._defaultFilterSource.filter$;
3808
- }
3809
- ngOnInit() {
3810
- this._defaultFilterSource.setDefaultFilter(this.makeDefaultFilter());
3811
- }
3812
- ngOnDestroy() {
3813
- this._defaultFilterSource.destroy();
3814
- }
3815
- initWithFilter(filterObs) {
3816
- this._defaultFilterSource.initWithFilter(filterObs);
3817
- }
3818
- setFilter(filter) {
3819
- this._defaultFilterSource.setFilter(filter);
3820
- }
3821
- resetFilter() {
3822
- this._defaultFilterSource.resetFilter();
3823
- }
3824
- // MARK: Internal
3825
- makeDefaultFilter() {
3826
- return of(undefined);
3827
- }
3828
- }
3829
- AbstractFilterSourceDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractFilterSourceDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
3830
- AbstractFilterSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractFilterSourceDirective, ngImport: i0 });
3831
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractFilterSourceDirective, decorators: [{
3832
- type: Directive
3833
- }] });
3834
-
3835
- /**
3836
- * Abstract filter source for components that use an action to filter.
3837
- */
3838
- class AbstractActionFilterSourceDirective extends AbstractFilterSourceDirective {
3839
- constructor() {
3840
- super(...arguments);
3841
- /**
3842
- * Pre-set action handler for the template to use to set the filter.
3843
- */
3844
- this.setFilterAction = (filter) => {
3845
- this.setFilter(filter);
3846
- return of(true);
3847
- };
3848
- }
3849
- applyFilter() {
3850
- this.filterAction.setIsModified(true); // Force setting modified.
3851
- this.filterAction.trigger();
3852
- }
3853
- }
3854
- AbstractActionFilterSourceDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractActionFilterSourceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
3855
- AbstractActionFilterSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractActionFilterSourceDirective, viewQueries: [{ propertyName: "filterAction", first: true, predicate: DbxActionContextStoreSourceInstance, descendants: true, read: DbxActionContextStoreSourceInstance, static: true }], usesInheritance: true, ngImport: i0 });
3856
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractActionFilterSourceDirective, decorators: [{
3857
- type: Directive
3858
- }], propDecorators: { filterAction: [{
3859
- type: ViewChild,
3860
- args: [DbxActionContextStoreSourceInstance, { static: true, read: DbxActionContextStoreSourceInstance }]
3861
- }] } });
3862
-
3863
3933
  /**
3864
3934
  * Abstract FilterSourceConnector directive.
3865
3935
  */
@@ -3908,6 +3978,77 @@ function provideFilterSourceConnector(sourceType) {
3908
3978
  ];
3909
3979
  }
3910
3980
 
3981
+ class FilterSourceDirective {
3982
+ }
3983
+ /**
3984
+ * Angular provider convenience function for a FilterSourceDirective.
3985
+ */
3986
+ function provideFilterSourceDirective(sourceType) {
3987
+ return [
3988
+ {
3989
+ provide: FilterSourceDirective,
3990
+ useExisting: forwardRef(() => sourceType)
3991
+ },
3992
+ ...provideFilterSource(sourceType)
3993
+ ];
3994
+ }
3995
+ /**
3996
+ * Abstract FilterSource implementation and directive.
3997
+ */
3998
+ class AbstractFilterSourceDirective {
3999
+ constructor() {
4000
+ this._defaultFilterSource = new FilterSourceInstance();
4001
+ this.filter$ = this._defaultFilterSource.filter$;
4002
+ }
4003
+ ngOnInit() {
4004
+ this._defaultFilterSource.setDefaultFilter(this.makeDefaultFilter());
4005
+ }
4006
+ ngOnDestroy() {
4007
+ this._defaultFilterSource.destroy();
4008
+ }
4009
+ initWithFilter(filterObs) {
4010
+ this._defaultFilterSource.initWithFilter(filterObs);
4011
+ }
4012
+ setFilter(filter) {
4013
+ this._defaultFilterSource.setFilter(filter);
4014
+ }
4015
+ resetFilter() {
4016
+ this._defaultFilterSource.resetFilter();
4017
+ }
4018
+ // MARK: Internal
4019
+ makeDefaultFilter() {
4020
+ return of(this.defaultFilterValue);
4021
+ }
4022
+ }
4023
+ AbstractFilterSourceDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractFilterSourceDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
4024
+ AbstractFilterSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: AbstractFilterSourceDirective, ngImport: i0 });
4025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: AbstractFilterSourceDirective, decorators: [{
4026
+ type: Directive
4027
+ }] });
4028
+
4029
+ /**
4030
+ * Connects the host FilterSource to a FilterSourceConnector.
4031
+ */
4032
+ class DbxFilterConnectSourceDirective {
4033
+ constructor(filterSource, filterSourceConnector) {
4034
+ this.filterSource = filterSource;
4035
+ this.filterSourceConnector = filterSourceConnector;
4036
+ }
4037
+ ngOnInit() {
4038
+ this.filterSourceConnector.connectWithSource(this.filterSource);
4039
+ }
4040
+ }
4041
+ DbxFilterConnectSourceDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxFilterConnectSourceDirective, deps: [{ token: i1$5.FilterSource, host: true }, { token: i1$5.FilterSourceConnector }], target: i0.ɵɵFactoryTarget.Directive });
4042
+ DbxFilterConnectSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: DbxFilterConnectSourceDirective, selector: "[dbxFilterConnectSource]", ngImport: i0 });
4043
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxFilterConnectSourceDirective, decorators: [{
4044
+ type: Directive,
4045
+ args: [{
4046
+ selector: '[dbxFilterConnectSource]'
4047
+ }]
4048
+ }], ctorParameters: function () { return [{ type: i1$5.FilterSource, decorators: [{
4049
+ type: Host
4050
+ }] }, { type: i1$5.FilterSourceConnector }]; } });
4051
+
3911
4052
  /**
3912
4053
  * Used as a FilterSource and FilterSourceConnector.
3913
4054
  */
@@ -3962,13 +4103,13 @@ class DbxFilterMapSourceDirective extends AbstractDbxFilterMapInstanceDirective
3962
4103
  }
3963
4104
  }
3964
4105
  DbxFilterMapSourceDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxFilterMapSourceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
3965
- DbxFilterMapSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: DbxFilterMapSourceDirective, selector: "[dbxFilterMapSource]", inputs: { key: ["dbxFilterMapSource", "key"] }, providers: [...provideFilterSource(DbxFilterMapSourceDirective)], exportAs: ["dbxFilterMapSource"], usesInheritance: true, ngImport: i0 });
4106
+ DbxFilterMapSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: DbxFilterMapSourceDirective, selector: "[dbxFilterMapSource]", inputs: { key: ["dbxFilterMapSource", "key"] }, providers: [provideFilterSource(DbxFilterMapSourceDirective)], exportAs: ["dbxFilterMapSource"], usesInheritance: true, ngImport: i0 });
3966
4107
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxFilterMapSourceDirective, decorators: [{
3967
4108
  type: Directive,
3968
4109
  args: [{
3969
4110
  selector: '[dbxFilterMapSource]',
3970
4111
  exportAs: 'dbxFilterMapSource',
3971
- providers: [...provideFilterSource(DbxFilterMapSourceDirective)]
4112
+ providers: [provideFilterSource(DbxFilterMapSourceDirective)]
3972
4113
  }]
3973
4114
  }], propDecorators: { key: [{
3974
4115
  type: Input,
@@ -4032,26 +4173,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
4032
4173
  class DbxFilterSourceDirective extends AbstractFilterSourceDirective {
4033
4174
  }
4034
4175
  DbxFilterSourceDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxFilterSourceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
4035
- DbxFilterSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: DbxFilterSourceDirective, selector: "[dbxFilterSource]", providers: provideFilterSource(DbxFilterSourceDirective), usesInheritance: true, ngImport: i0 });
4176
+ DbxFilterSourceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.2", type: DbxFilterSourceDirective, selector: "[dbxFilterSource]", providers: provideFilterSourceDirective(DbxFilterSourceDirective), usesInheritance: true, ngImport: i0 });
4036
4177
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxFilterSourceDirective, decorators: [{
4037
4178
  type: Directive,
4038
4179
  args: [{
4039
4180
  selector: '[dbxFilterSource]',
4040
- providers: provideFilterSource(DbxFilterSourceDirective)
4181
+ providers: provideFilterSourceDirective(DbxFilterSourceDirective)
4041
4182
  }]
4042
4183
  }] });
4043
4184
 
4044
4185
  class DbxCoreFilterModule {
4045
4186
  }
4046
4187
  DbxCoreFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxCoreFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4047
- DbxCoreFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.2", ngImport: i0, type: DbxCoreFilterModule, declarations: [DbxFilterSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective], imports: [CommonModule], exports: [DbxFilterSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective] });
4188
+ DbxCoreFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.2", ngImport: i0, type: DbxCoreFilterModule, declarations: [DbxFilterSourceDirective, DbxFilterConnectSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective], imports: [CommonModule], exports: [DbxFilterSourceDirective, DbxFilterConnectSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective] });
4048
4189
  DbxCoreFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxCoreFilterModule, imports: [CommonModule] });
4049
4190
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImport: i0, type: DbxCoreFilterModule, decorators: [{
4050
4191
  type: NgModule,
4051
4192
  args: [{
4052
4193
  imports: [CommonModule],
4053
- declarations: [DbxFilterSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective],
4054
- exports: [DbxFilterSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective]
4194
+ declarations: [DbxFilterSourceDirective, DbxFilterConnectSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective],
4195
+ exports: [DbxFilterSourceDirective, DbxFilterConnectSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective]
4055
4196
  }]
4056
4197
  }] });
4057
4198
 
@@ -4836,5 +4977,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.2", ngImpor
4836
4977
  * Generated bundle index. Do not edit.
4837
4978
  */
4838
4979
 
4839
- export { APP_ACTION_DISABLED_DIRECTIVE_KEY, APP_ACTION_DISABLED_ON_SUCCESS_DIRECTIVE_KEY, APP_ACTION_ENFORCE_MODIFIED_DIRECTIVE_KEY, AbstractActionFilterSourceDirective, AbstractDbxActionValueOnTriggerDirective, AbstractDbxAnchorDirective, AbstractDbxButtonDirective, AbstractDbxFilterMapInstanceDirective, AbstractDbxInjectionDirective, AbstractFilterSourceConnectorDirective, AbstractFilterSourceDirective, AbstractForwardDbxInjectionContextDirective, AbstractIfDirective, AbstractLockSetSubscriptionDirective, AbstractSubscriptionDirective, AbstractTransitionDirective, AbstractTransitionWatcherDirective, ActionContextStore, ActionContextStoreSource, ActionContextStoreSourceMap, AnchorType, 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_PUBLIC_APP_CONTEXT_STATE, DEFAULT_ACTION_DISABLED_KEY, DEFAULT_ACTION_MAP_WORKING_DISABLED_KEY, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_KEY, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_VALUE, DEFAULT_STORAGE_ACCESSOR_FACTORY_TOKEN, DEFAULT_STORAGE_OBJECT_TOKEN, DateDistancePipe, DateFormatDistancePipe, DateFromToTimePipe, DbxActionAutoModifyDirective, DbxActionAutoTriggerDirective, DbxActionButtonDirective, DbxActionButtonTriggerDirective, DbxActionContextBaseSource, DbxActionContextLoggerDirective, DbxActionContextMachine, DbxActionContextMapDirective, DbxActionContextMapDirectiveSourceInstance, DbxActionContextStoreSourceInstance, DbxActionDirective, DbxActionDisabledDirective, DbxActionDisabledOnSuccessDirective, DbxActionEnforceModifiedDirective, DbxActionFromMapDirective, DbxActionHandlerDirective, 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, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterSourceDirective, DbxInjectionComponent, DbxInjectionComponentModule, DbxInjectionContext, DbxInjectionContextDirective, DbxInjectionInstance, DbxLoadingButtonDirective, DbxMiscPipeModule, DbxPipesModule, DbxRouteParamDefaultRedirectInstance, DbxRouteParamReaderInstance, DbxRouterService, DbxRouterTransitionEventType, DbxRouterTransitionService, DbxStorageModule, DbxUIRouterService, 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, actionContextStoreSourcePipe, anchorTypeForAnchor, asSegueRef, asSegueRefString, authRolesSetContainsAllRolesFrom, authRolesSetContainsAnyRoleFrom, authRolesSetContainsNoRolesFrom, authUserIdentifier, canReadyValue, canTriggerAction, canTriggerActionState, checkNgContentWrapperHasContent, dbxActionValueStreamDirective, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, index as fromDbxAppAuth, index$2 as fromDbxAppContext, goWithRouter, isActionContextDisabled, isActionContextEnabled, isDisabledActionContextState, isIdleActionState, isLatestSuccessfulRoute, isSegueRef, isWorkingActionState, loadingStateForActionContextState, loadingStateTypeForActionContextState, loadingStateTypeForActionState, loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, makeAuthTransitionHook, makeDbxActionContextSourceReference, mapRefStringObsToSegueRefObs, mergeDbxInjectionComponentConfigs, index$1 as onDbxAppAuth, index$3 as onDbxAppContext, pipeActionStore, provideActionStoreSource, provideDbxAnchor, provideDbxButton, provideDbxInjectionContext, provideFilterSource, provideFilterSourceConnector, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, tapDetectChanges, tapSafeMarkForCheck, useActionStore };
4980
+ 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_PUBLIC_APP_CONTEXT_STATE, DEFAULT_ACTION_DISABLED_KEY, DEFAULT_ACTION_MAP_WORKING_DISABLED_KEY, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_KEY, DEFAULT_REDIRECT_FOR_USER_IDENTIFIER_PARAM_VALUE, DEFAULT_STORAGE_ACCESSOR_FACTORY_TOKEN, DEFAULT_STORAGE_OBJECT_TOKEN, DateDistancePipe, DateFormatDistancePipe, DateFromToTimePipe, 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, dbxActionValueStreamDirective, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, index as fromDbxAppAuth, index$2 as fromDbxAppContext, goWithRouter, isActionContextDisabled, isActionContextEnabled, isDisabledActionContextState, isIdleActionState, isLatestSuccessfulRoute, isSegueRef, isSegueRefActive, isSegueRefActiveFunction, isSegueRefActiveOnTransitionSuccess, isWorkingActionState, 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, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, tapDetectChanges, tapSafeMarkForCheck, useActionStore };
4840
4981
  //# sourceMappingURL=dereekb-dbx-core.mjs.map