@dereekb/dbx-core 13.2.2 → 13.3.1

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-core",
3
- "version": "13.2.2",
3
+ "version": "13.3.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0",
7
7
  "@angular/router": "^21.0.0",
8
- "@dereekb/date": "13.2.2",
9
- "@dereekb/rxjs": "13.2.2",
10
- "@dereekb/util": "13.2.2",
8
+ "@dereekb/date": "13.3.1",
9
+ "@dereekb/rxjs": "13.3.1",
10
+ "@dereekb/util": "13.3.1",
11
11
  "@ngrx/component-store": "^21.0.0",
12
12
  "@ngrx/effects": "^21.0.0",
13
13
  "@ngrx/store": "^21.0.0",
@@ -9,7 +9,7 @@ import { PercentNumber, Maybe, ReadableError, BooleanStringKeyArray, Destroyable
9
9
  import * as _dereekb_dbx_core from '@dereekb/dbx-core';
10
10
  import { ComponentStore } from '@ngrx/component-store';
11
11
  import * as _uirouter_core from '@uirouter/core';
12
- import { Transition, UIInjector, TransitionHookFn, TransitionService, HookMatchCriteria, StateService, UIRouterGlobals, TransitionOptions } from '@uirouter/core';
12
+ import { Transition, UIInjector, TransitionHookFn, TransitionService, HookMatchCriteria, UIRouter, StateService, UIRouterGlobals, TransitionOptions } from '@uirouter/core';
13
13
  import * as _ngrx_effects from '@ngrx/effects';
14
14
  import { OnRunEffects, Actions, EffectNotification } from '@ngrx/effects';
15
15
  import * as _ngrx_store from '@ngrx/store';
@@ -1883,9 +1883,31 @@ declare class DbxCoreActionModule {
1883
1883
  }
1884
1884
 
1885
1885
  /**
1886
- * Provides an ActionContextStoreSource, as well as an DbxActionContextStoreSourceInstance.
1886
+ * Creates Angular DI providers for an {@link ActionContextStoreSource} and its associated {@link DbxActionContextStoreSourceInstance}.
1887
+ *
1888
+ * When `sourceType` is provided, the existing class is registered as the source. When `null`,
1889
+ * a standalone {@link DbxActionContextMachineAsService} is created as the default implementation.
1890
+ *
1891
+ * @param sourceType - The concrete source class to register, or `null` to use the default machine-based implementation
1892
+ * @returns An array of Angular providers
1893
+ *
1894
+ * @example
1895
+ * ```typescript
1896
+ * @Directive({
1897
+ * selector: '[myAction]',
1898
+ * providers: provideActionStoreSource(MyActionDirective),
1899
+ * })
1900
+ * export class MyActionDirective extends ActionContextStoreSource { ... }
1901
+ * ```
1887
1902
  */
1888
1903
  declare function provideActionStoreSource<S extends ActionContextStoreSource>(sourceType: Type<S> | null): Provider[];
1904
+ /**
1905
+ * Creates Angular DI providers for a {@link SecondaryActionContextStoreSource} along with
1906
+ * the standard {@link ActionContextStoreSource} and {@link DbxActionContextStoreSourceInstance} providers.
1907
+ *
1908
+ * @param sourceType - The concrete secondary source class to register
1909
+ * @returns An array of Angular providers
1910
+ */
1889
1911
  declare function provideSecondaryActionStoreSource<S extends SecondaryActionContextStoreSource>(sourceType: Type<S>): Provider[];
1890
1912
 
1891
1913
  /**
@@ -2584,12 +2606,16 @@ declare const DBX_ONBOARD_APP_CONTEXT_STATE = "onboard";
2584
2606
  * The app state of an app, typically when a user has completed auth and onboarding.
2585
2607
  */
2586
2608
  declare const DBX_APP_APP_CONTEXT_STATE = "app";
2609
+ /**
2610
+ * The oauth state of an app, typically when a user is validating an oauth request.
2611
+ */
2612
+ declare const DBX_OAUTH_APP_CONTEXT_STATE = "oauth";
2587
2613
  /**
2588
2614
  * Default AppContextStates.
2589
2615
  *
2590
2616
  * Your app may not use these, but this type is available for convenience.
2591
2617
  */
2592
- type DbxKnownAppContextState = typeof DBX_INIT_APP_CONTEXT_STATE | typeof DBX_PUBLIC_APP_CONTEXT_STATE | typeof DBX_AUTH_APP_CONTEXT_STATE | typeof DBX_ONBOARD_APP_CONTEXT_STATE | typeof DBX_APP_APP_CONTEXT_STATE;
2618
+ type DbxKnownAppContextState = typeof DBX_INIT_APP_CONTEXT_STATE | typeof DBX_PUBLIC_APP_CONTEXT_STATE | typeof DBX_AUTH_APP_CONTEXT_STATE | typeof DBX_ONBOARD_APP_CONTEXT_STATE | typeof DBX_APP_APP_CONTEXT_STATE | typeof DBX_OAUTH_APP_CONTEXT_STATE;
2593
2619
  /**
2594
2620
  * Array of all DbxKnownAppContextState values, minus the init state.
2595
2621
  */
@@ -3144,15 +3170,21 @@ declare abstract class DbxRouterService extends DbxRouterTransitionService {
3144
3170
  */
3145
3171
  abstract updateParams(params: ObservableOrValue<SegueRefRawSegueParams>): Promise<boolean>;
3146
3172
  /**
3147
- * Returns true if the input segue ref is considered active.
3173
+ * Returns `true` if the input segue ref is considered active (hierarchical match).
3148
3174
  *
3149
- * @param segueRef
3175
+ * Accepts both state names (e.g., `'app.dashboard'`) and slash paths (e.g., `'/app/dashboard'`).
3176
+ * For non-exact checks, a parent route matches all of its children — e.g., `'/app/oauth'`
3177
+ * is active when the current path is `'/app/oauth/login'`.
3178
+ *
3179
+ * @param segueRef - A state name, URL path, or {@link SegueRef} to check against the current route.
3150
3180
  */
3151
3181
  abstract isActive(segueRef: SegueRefOrSegueRefRouterLink): boolean;
3152
3182
  /**
3153
- * Returns true if the input segue ref is considered active exactly.
3183
+ * Returns `true` if the input segue ref matches the current route exactly.
3154
3184
  *
3155
- * @param segueRef
3185
+ * Unlike {@link isActive}, this does not match parent routes against child routes.
3186
+ *
3187
+ * @param segueRef - A state name, URL path, or {@link SegueRef} to check against the current route.
3156
3188
  */
3157
3189
  abstract isActiveExactly(segueRef: SegueRefOrSegueRefRouterLink): boolean;
3158
3190
  /**
@@ -3205,6 +3237,9 @@ declare abstract class DbxAppAuthRoutes {
3205
3237
  * It also manages an `isAuthRouterEffectsEnabled` flag that controls whether
3206
3238
  * {@link DbxAppAuthRouterEffects} should perform automatic navigation on auth events.
3207
3239
  *
3240
+ * Routes can be added to the ignored set via {@link addIgnoredRoute} to prevent
3241
+ * auth effects from redirecting away from those routes (e.g., OAuth interaction pages).
3242
+ *
3208
3243
  * @example
3209
3244
  * ```ts
3210
3245
  * @Component({ ... })
@@ -3223,9 +3258,25 @@ declare abstract class DbxAppAuthRoutes {
3223
3258
  declare class DbxAppAuthRouterService implements OnDestroy {
3224
3259
  readonly dbxRouterService: DbxRouterService;
3225
3260
  readonly dbxAppAuthRoutes: DbxAppAuthRoutes;
3226
- private _isAuthRouterEffectsEnabled;
3261
+ private readonly _isAuthRouterEffectsEnabled;
3262
+ private readonly _ignoredRoutes;
3227
3263
  /** Observable of whether auth router effects are currently enabled. */
3228
- readonly isAuthRouterEffectsEnabled$: rxjs.Observable<boolean>;
3264
+ readonly isAuthRouterEffectsEnabled$: Observable<boolean>;
3265
+ /** Observable of the set of route refs that are excluded from auth redirect effects. */
3266
+ readonly ignoredRoutes$: Observable<Set<SegueRefOrSegueRefRouterLink>>;
3267
+ /**
3268
+ * Observable that emits `true` when the current route is in the ignored set.
3269
+ *
3270
+ * Combines the ignored route refs with router transition events to re-evaluate
3271
+ * whenever the route or the ignored set changes.
3272
+ */
3273
+ readonly isCurrentRouteIgnoredByAuthEffects$: Observable<boolean>;
3274
+ /**
3275
+ * Observable that emits `true` when auth router effects should be active for the current route.
3276
+ *
3277
+ * Combines the enabled flag and the ignored route check.
3278
+ */
3279
+ readonly shouldAuthEffectsRedirect$: Observable<boolean>;
3229
3280
  ngOnDestroy(): void;
3230
3281
  get hasOnboardingState(): boolean;
3231
3282
  /**
@@ -3233,6 +3284,23 @@ declare class DbxAppAuthRouterService implements OnDestroy {
3233
3284
  */
3234
3285
  get isAuthRouterEffectsEnabled(): boolean;
3235
3286
  set isAuthRouterEffectsEnabled(enabled: boolean);
3287
+ /**
3288
+ * Adds a route to the ignored set. Auth effects will not redirect
3289
+ * when the user is on a route that matches any ignored route.
3290
+ *
3291
+ * Uses hierarchical matching — adding a parent route (e.g., `'/app/oauth'`)
3292
+ * will also ignore all child routes (e.g., `'/app/oauth/login'`).
3293
+ */
3294
+ addIgnoredRoute(ref: SegueRefOrSegueRefRouterLink): void;
3295
+ /**
3296
+ * Removes a route from the ignored set.
3297
+ */
3298
+ removeIgnoredRoute(ref: SegueRefOrSegueRefRouterLink): void;
3299
+ /**
3300
+ * Returns `true` if the current route matches any of the ignored routes.
3301
+ */
3302
+ get isCurrentRouteIgnoredByAuthEffects(): boolean;
3303
+ private _checkCurrentRouteIgnored;
3236
3304
  /**
3237
3305
  * Navigates to the login state.
3238
3306
  *
@@ -3282,6 +3350,7 @@ declare const DBX_APP_AUTH_ROUTER_EFFECTS_TOKEN: InjectionToken<unknown>;
3282
3350
  * Navigation only occurs when:
3283
3351
  * 1. The app is in one of the configured active context states (see {@link DBX_APP_AUTH_ROUTER_EFFECTS_TOKEN}).
3284
3352
  * 2. The {@link DbxAppAuthRouterService.isAuthRouterEffectsEnabled} flag is `true`.
3353
+ * 3. The current route is not in the ignored routes set (see {@link DbxAppAuthRouterService.addIgnoredRoute}).
3285
3354
  *
3286
3355
  * Extends {@link AbstractOnDbxAppContextStateEffects} to scope effect activation to specific app states.
3287
3356
  *
@@ -4715,6 +4784,7 @@ declare class DbxCoreAngularRouterSegueModule {
4715
4784
  * @see {@link DbxAngularRouterService} for the Angular Router alternative
4716
4785
  */
4717
4786
  declare class DbxUIRouterService implements DbxRouterService, DbxRouterTransitionService, OnDestroy {
4787
+ readonly uiRouter: UIRouter;
4718
4788
  readonly state: StateService;
4719
4789
  readonly transitionService: TransitionService;
4720
4790
  readonly uiRouterGlobals: UIRouterGlobals;
@@ -5365,11 +5435,17 @@ declare class DbxRouteModelIdDirective {
5365
5435
  constructor();
5366
5436
  get idParam(): string;
5367
5437
  set idParam(idParam: string);
5438
+ /**
5439
+ * Default model identifier value to use when the route parameter matches the placeholder or is absent.
5440
+ */
5368
5441
  set dbxRouteModelIdDefault(defaultValue: MaybeObservableOrValueGetter<ModelKey>);
5369
5442
  /**
5370
5443
  * Whether or not to enable the redirection. Is enabled by default.
5371
5444
  */
5372
5445
  set dbxRouteModelIdDefaultRedirect(redirect: Maybe<boolean> | '');
5446
+ /**
5447
+ * Custom decision function or placeholder string value that determines when to use the default value instead of the route parameter.
5448
+ */
5373
5449
  set dbxRouteModelIdDefaultDecision(decider: string | SwitchMapToDefaultFilterFunction<ModelKey>);
5374
5450
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxRouteModelIdDirective, never>;
5375
5451
  static ɵdir: i0.ɵɵDirectiveDeclaration<DbxRouteModelIdDirective, "[dbxRouteModelId]", never, { "idParam": { "alias": "dbxRouteModelId"; "required": false; }; "dbxRouteModelIdDefault": { "alias": "dbxRouteModelIdDefault"; "required": false; }; "dbxRouteModelIdDefaultRedirect": { "alias": "dbxRouteModelIdDefaultRedirect"; "required": false; }; "dbxRouteModelIdDefaultDecision": { "alias": "dbxRouteModelIdDefaultDecision"; "required": false; }; }, {}, never, never, true, never>;
@@ -5406,11 +5482,17 @@ declare class DbxRouteModelKeyDirective {
5406
5482
  constructor();
5407
5483
  get keyParam(): string;
5408
5484
  set keyParam(idParam: string);
5485
+ /**
5486
+ * Default model key value to use when the route parameter matches the placeholder or is absent.
5487
+ */
5409
5488
  set dbxRouteModelKeyDefault(defaultValue: MaybeObservableOrValueGetter<ModelKey>);
5410
5489
  /**
5411
5490
  * Whether or not to enable the redirection. Is enabled by default.
5412
5491
  */
5413
5492
  set dbxRouteModelKeyDefaultRedirect(redirect: Maybe<boolean> | '');
5493
+ /**
5494
+ * Custom decision function or placeholder string value that determines when to use the default value instead of the route parameter.
5495
+ */
5414
5496
  set dbxRouteModelKeyDefaultDecision(decider: string | SwitchMapToDefaultFilterFunction<ModelKey>);
5415
5497
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxRouteModelKeyDirective, never>;
5416
5498
  static ɵdir: i0.ɵɵDirectiveDeclaration<DbxRouteModelKeyDirective, "[dbxRouteModelKey]", never, { "keyParam": { "alias": "dbxRouteModelKey"; "required": false; }; "dbxRouteModelKeyDefault": { "alias": "dbxRouteModelKeyDefault"; "required": false; }; "dbxRouteModelKeyDefaultRedirect": { "alias": "dbxRouteModelKeyDefaultRedirect"; "required": false; }; "dbxRouteModelKeyDefaultDecision": { "alias": "dbxRouteModelKeyDefaultDecision"; "required": false; }; }, {}, never, never, true, never>;
@@ -7312,5 +7394,5 @@ declare function checkNgContentWrapperHasContent(ref: Maybe<ElementRef<Element>>
7312
7394
  */
7313
7395
  declare const transformEmptyStringInputToUndefined: <T>(value: T | "") => T | undefined;
7314
7396
 
7315
- export { ACTION_CONTEXT_STORE_LOCKSET_DESTROY_DELAY_TIME, APP_ACTION_DISABLED_DIRECTIVE_KEY, APP_ACTION_DISABLED_ON_SUCCESS_DIRECTIVE_KEY, APP_ACTION_ENFORCE_MODIFIED_DIRECTIVE_KEY, AbstractDbxActionHandlerDirective, AbstractDbxActionValueGetterDirective, AbstractDbxAnchorDirective, AbstractDbxButtonDirective, AbstractDbxFilterMapInstanceDirective, AbstractDbxFilterMapSourceDirective, AbstractDbxInjectionDirective, AbstractFilterSourceConnectorDirective, AbstractFilterSourceDirective, AbstractForwardDbxInjectionContextDirective, AbstractIfDirective, AbstractTransitionDirective, AbstractTransitionWatcherDirective, ActionContextStore, ActionContextStoreSource, ActionContextStoreSourceMap, AsObservablePipe, CutTextPipe, 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_ONBOARD_APP_CONTEXT_STATE, DBX_PUBLIC_APP_CONTEXT_STATE, DBX_ROUTE_MODEL_ID_PARAM_DEFAULT_ID_PARAM_KEY, DBX_ROUTE_MODEL_ID_PARAM_DEFAULT_KEY_PARAM_KEY, DBX_ROUTE_MODEL_ID_PARAM_DEFAULT_USE_PARAM_VALUE, 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, DateFormatFromToPipe, DateRangeDistancePipe, DateTimeRangeOnlyDistancePipe, DateTimeRangeOnlyPipe, DateTimeRangePipe, DbxActionAutoModifyDirective, DbxActionAutoTriggerDirective, DbxActionButtonDirective, DbxActionButtonTriggerDirective, DbxActionContextBaseSource, DbxActionContextLoggerDirective, DbxActionContextMachine, DbxActionContextMachineAsService, DbxActionContextMapDirective, DbxActionContextStoreSourceInstance, DbxActionDirective, DbxActionDisabledDirective, DbxActionDisabledOnSuccessDirective, DbxActionEnforceModifiedDirective, DbxActionErrorHandlerDirective, DbxActionFromMapDirective, DbxActionHandlerDirective, DbxActionHandlerInstance, DbxActionHandlerValueDirective, DbxActionHasSuccessDirective, DbxActionIdleDirective, DbxActionIsWorkingDirective, DbxActionMapSourceDirective, DbxActionMapWorkingDisableDirective, DbxActionPreSuccessDirective, DbxActionSourceDirective, DbxActionState, DbxActionSuccessHandlerDirective, DbxActionTriggeredDirective, DbxActionValueDirective, DbxActionValueGetterInstance, DbxActionValueStreamDirective, DbxActionValueTriggerDirective, DbxActionWorkInstanceDelegate, DbxAnchor, DbxAngularRouterService, DbxAppAuthRouterEffects, DbxAppAuthRouterService, DbxAppAuthRoutes, DbxAppAuthStateService, DbxAppContextService, DbxAppContextStateDirective, DbxAppEnviroment, DbxAppEnviromentService, DbxAuthHasAnyRoleDirective, DbxAuthHasRolesDirective, DbxAuthNotAnyRoleDirective, DbxAuthService, DbxButton, DbxButtonDirective, DbxButtonSegueDirective, DbxCoreActionModule, DbxCoreAngularRouterSegueModule, DbxCoreButtonModule, DbxCoreFilterModule, DbxFilterConnectSourceDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterSourceDirective, DbxInjectionArrayComponent, DbxInjectionComponent, DbxInjectionContext, DbxInjectionContextDirective, DbxInjectionInstance, DbxLoadingButtonDirective, DbxRouteModelIdDirective, DbxRouteModelIdDirectiveDelegate, DbxRouteModelIdFromAuthUserIdDirective, DbxRouteModelKeyDirective, DbxRouteModelKeyDirectiveDelegate, DbxRouteParamDefaultRedirectInstance, DbxRouterService, DbxRouterTransitionEventType, DbxRouterTransitionService, DbxUIRouterService, DollarAmountPipe, FILTER_SOURCE_DIRECTIVE_DEFAULT_FILTER_TOKEN, FilterSourceDirective, FullLocalStorageObject, GetValueOncePipe, GetValuePipe, InstantStorageAccessor, LimitedStorageAccessor, LockSetComponentStore, MemoryStorageObject, MinutesStringPipe, NO_AUTH_USER_IDENTIFIER, PrettyJsonPipe, SecondaryActionContextStoreSource, SimpleStorageAccessor, SimpleStorageAccessorFactory, StorageAccessor, StringStorageAccessor, StringifySimpleStorageAccessorConverter, SystemDateToTargetDatePipe, TargetDateToSystemDatePipe, TimeDistanceCountdownPipe, TimeDistancePipe, TimezoneAbbreviationPipe, ToJsDatePipe, ToMinutesPipe, WrapperSimpleStorageAccessorDelegate, actionContextHasNoErrorAndIsModifiedAndCanTrigger, actionContextIsModifiedAndCanTrigger, actionContextStoreSourceMap, actionContextStoreSourceMapReader, actionContextStoreSourcePipe, anchorTypeForAnchor, asSegueRef, asSegueRefString, assertValidStorageKeyPrefix, authRolesSetContainsAllRolesFrom, authRolesSetContainsAnyRoleFrom, authRolesSetContainsNoRolesFrom, authUserIdentifier, canReadyValue, canTriggerAction, canTriggerActionState, checkNgContentWrapperHasContent, clean, cleanDestroy, cleanListLoadingContext, cleanLoadingContext, cleanLockSet, cleanSubscription, cleanSubscriptionWithLockSet, cleanWithLockSet, clickableUrlInNewTab, clickableUrlMailTo, clickableUrlTel, completeOnDestroy, dbxActionWorkProgress, dbxButtonDisplayType, dbxRouteModelIdParamRedirect, dbxRouteModelKeyParamRedirect, dbxRouteParamReaderInstance, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, fromAllActionContextStoreSourceMapSources, index_d$1 as fromDbxAppAuth, index_d$3 as fromDbxAppContext, goWithRouter, hasAuthRoleDecisionPipe, isActionContextDisabled, isActionContextEnabled, isClickableFilterPreset, isClickablePartialFilterPreset, isDisabledActionContextState, isIdleActionState, isLatestSuccessfulRoute, isSegueRef, isSegueRefActive, isSegueRefActiveFunction, isSegueRefActiveOnTransitionSuccess, isValidStorageKeyPrefix, isWorkingActionState, latestSuccessfulRoutes, loadingStateForActionContextState, loadingStateTypeForActionContextState, loadingStateTypeForActionState, loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, makeAuthTransitionHook, makeDbxActionContextSourceReference, mapRefStringObsToSegueRefObs, mergeDbxInjectionComponentConfigs, mergeStaticProviders, newWithInjector, index_d as onDbxAppAuth, index_d$2 as onDbxAppContext, onRouterTransitionEventType, onRouterTransitionSuccessEvent, pipeActionStore, provideActionStoreSource, provideDbxAnchor, provideDbxAppAuth, provideDbxAppAuthRouter, provideDbxAppAuthRouterState, provideDbxAppAuthState, provideDbxAppContextState, provideDbxAppEnviroment, provideDbxButton, provideDbxInjectionContext, provideDbxRouteModelIdDirectiveDelegate, provideDbxRouteModelKeyDirectiveDelegate, provideDbxStorage, provideDbxUIRouterService, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, switchMapDbxInjectionComponentConfig, tapDetectChanges, tapSafeMarkForCheck, transformEmptyStringInputToUndefined, useActionStore };
7397
+ export { ACTION_CONTEXT_STORE_LOCKSET_DESTROY_DELAY_TIME, APP_ACTION_DISABLED_DIRECTIVE_KEY, APP_ACTION_DISABLED_ON_SUCCESS_DIRECTIVE_KEY, APP_ACTION_ENFORCE_MODIFIED_DIRECTIVE_KEY, AbstractDbxActionHandlerDirective, AbstractDbxActionValueGetterDirective, AbstractDbxAnchorDirective, AbstractDbxButtonDirective, AbstractDbxFilterMapInstanceDirective, AbstractDbxFilterMapSourceDirective, AbstractDbxInjectionDirective, AbstractFilterSourceConnectorDirective, AbstractFilterSourceDirective, AbstractForwardDbxInjectionContextDirective, AbstractIfDirective, AbstractTransitionDirective, AbstractTransitionWatcherDirective, ActionContextStore, ActionContextStoreSource, ActionContextStoreSourceMap, AsObservablePipe, CutTextPipe, 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_OAUTH_APP_CONTEXT_STATE, DBX_ONBOARD_APP_CONTEXT_STATE, DBX_PUBLIC_APP_CONTEXT_STATE, DBX_ROUTE_MODEL_ID_PARAM_DEFAULT_ID_PARAM_KEY, DBX_ROUTE_MODEL_ID_PARAM_DEFAULT_KEY_PARAM_KEY, DBX_ROUTE_MODEL_ID_PARAM_DEFAULT_USE_PARAM_VALUE, 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, DateFormatFromToPipe, DateRangeDistancePipe, DateTimeRangeOnlyDistancePipe, DateTimeRangeOnlyPipe, DateTimeRangePipe, DbxActionAutoModifyDirective, DbxActionAutoTriggerDirective, DbxActionButtonDirective, DbxActionButtonTriggerDirective, DbxActionContextBaseSource, DbxActionContextLoggerDirective, DbxActionContextMachine, DbxActionContextMachineAsService, DbxActionContextMapDirective, DbxActionContextStoreSourceInstance, DbxActionDirective, DbxActionDisabledDirective, DbxActionDisabledOnSuccessDirective, DbxActionEnforceModifiedDirective, DbxActionErrorHandlerDirective, DbxActionFromMapDirective, DbxActionHandlerDirective, DbxActionHandlerInstance, DbxActionHandlerValueDirective, DbxActionHasSuccessDirective, DbxActionIdleDirective, DbxActionIsWorkingDirective, DbxActionMapSourceDirective, DbxActionMapWorkingDisableDirective, DbxActionPreSuccessDirective, DbxActionSourceDirective, DbxActionState, DbxActionSuccessHandlerDirective, DbxActionTriggeredDirective, DbxActionValueDirective, DbxActionValueGetterInstance, DbxActionValueStreamDirective, DbxActionValueTriggerDirective, DbxActionWorkInstanceDelegate, DbxAnchor, DbxAngularRouterService, DbxAppAuthRouterEffects, DbxAppAuthRouterService, DbxAppAuthRoutes, DbxAppAuthStateService, DbxAppContextService, DbxAppContextStateDirective, DbxAppEnviroment, DbxAppEnviromentService, DbxAuthHasAnyRoleDirective, DbxAuthHasRolesDirective, DbxAuthNotAnyRoleDirective, DbxAuthService, DbxButton, DbxButtonDirective, DbxButtonSegueDirective, DbxCoreActionModule, DbxCoreAngularRouterSegueModule, DbxCoreButtonModule, DbxCoreFilterModule, DbxFilterConnectSourceDirective, DbxFilterMapDirective, DbxFilterMapSourceConnectorDirective, DbxFilterMapSourceDirective, DbxFilterSourceConnectorDirective, DbxFilterSourceDirective, DbxInjectionArrayComponent, DbxInjectionComponent, DbxInjectionContext, DbxInjectionContextDirective, DbxInjectionInstance, DbxLoadingButtonDirective, DbxRouteModelIdDirective, DbxRouteModelIdDirectiveDelegate, DbxRouteModelIdFromAuthUserIdDirective, DbxRouteModelKeyDirective, DbxRouteModelKeyDirectiveDelegate, DbxRouteParamDefaultRedirectInstance, DbxRouterService, DbxRouterTransitionEventType, DbxRouterTransitionService, DbxUIRouterService, DollarAmountPipe, FILTER_SOURCE_DIRECTIVE_DEFAULT_FILTER_TOKEN, FilterSourceDirective, FullLocalStorageObject, GetValueOncePipe, GetValuePipe, InstantStorageAccessor, LimitedStorageAccessor, LockSetComponentStore, MemoryStorageObject, MinutesStringPipe, NO_AUTH_USER_IDENTIFIER, PrettyJsonPipe, SecondaryActionContextStoreSource, SimpleStorageAccessor, SimpleStorageAccessorFactory, StorageAccessor, StringStorageAccessor, StringifySimpleStorageAccessorConverter, SystemDateToTargetDatePipe, TargetDateToSystemDatePipe, TimeDistanceCountdownPipe, TimeDistancePipe, TimezoneAbbreviationPipe, ToJsDatePipe, ToMinutesPipe, WrapperSimpleStorageAccessorDelegate, actionContextHasNoErrorAndIsModifiedAndCanTrigger, actionContextIsModifiedAndCanTrigger, actionContextStoreSourceMap, actionContextStoreSourceMapReader, actionContextStoreSourcePipe, anchorTypeForAnchor, asSegueRef, asSegueRefString, assertValidStorageKeyPrefix, authRolesSetContainsAllRolesFrom, authRolesSetContainsAnyRoleFrom, authRolesSetContainsNoRolesFrom, authUserIdentifier, canReadyValue, canTriggerAction, canTriggerActionState, checkNgContentWrapperHasContent, clean, cleanDestroy, cleanListLoadingContext, cleanLoadingContext, cleanLockSet, cleanSubscription, cleanSubscriptionWithLockSet, cleanWithLockSet, clickableUrlInNewTab, clickableUrlMailTo, clickableUrlTel, completeOnDestroy, dbxActionWorkProgress, dbxButtonDisplayType, dbxRouteModelIdParamRedirect, dbxRouteModelKeyParamRedirect, dbxRouteParamReaderInstance, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, fromAllActionContextStoreSourceMapSources, index_d$1 as fromDbxAppAuth, index_d$3 as fromDbxAppContext, goWithRouter, hasAuthRoleDecisionPipe, isActionContextDisabled, isActionContextEnabled, isClickableFilterPreset, isClickablePartialFilterPreset, isDisabledActionContextState, isIdleActionState, isLatestSuccessfulRoute, isSegueRef, isSegueRefActive, isSegueRefActiveFunction, isSegueRefActiveOnTransitionSuccess, isValidStorageKeyPrefix, isWorkingActionState, latestSuccessfulRoutes, loadingStateForActionContextState, loadingStateTypeForActionContextState, loadingStateTypeForActionState, loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, makeAuthTransitionHook, makeDbxActionContextSourceReference, mapRefStringObsToSegueRefObs, mergeDbxInjectionComponentConfigs, mergeStaticProviders, newWithInjector, index_d as onDbxAppAuth, index_d$2 as onDbxAppContext, onRouterTransitionEventType, onRouterTransitionSuccessEvent, pipeActionStore, provideActionStoreSource, provideDbxAnchor, provideDbxAppAuth, provideDbxAppAuthRouter, provideDbxAppAuthRouterState, provideDbxAppAuthState, provideDbxAppContextState, provideDbxAppEnviroment, provideDbxButton, provideDbxInjectionContext, provideDbxRouteModelIdDirectiveDelegate, provideDbxRouteModelKeyDirectiveDelegate, provideDbxStorage, provideDbxUIRouterService, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, switchMapDbxInjectionComponentConfig, tapDetectChanges, tapSafeMarkForCheck, transformEmptyStringInputToUndefined, useActionStore };
7316
7398
  export type { ActionContextState, ActionContextStoreSourceMapReader, ActionKey, AuthTransitionDecision, AuthTransitionDecisionGetterInput, AuthTransitionHookConfig, AuthTransitionHookOptions, AuthTransitionRedirectTarget, AuthTransitionRedirectTargetGetter, AuthTransitionRedirectTargetOrGetter, AuthTransitionStateData, AuthUserIdentifier, AuthUserState, CleanLockSet, CleanLockSetConfig, CleanSubscriptionWithLockSetConfig, ClickableAnchor, ClickableAnchorLink, ClickableAnchorLinkSegueRef, ClickableAnchorLinkTree, ClickableAnchorType, ClickableFilterPreset, ClickableFilterPresetOrPartialPreset, ClickableFunction, ClickableIconAnchorLink, ClickablePartialFilterPreset, ClickableUrl, DbxActionContextMachineConfig, DbxActionContextSourceReference, DbxActionDisabledKey, DbxActionErrorHandlerFunction, DbxActionRejectedPair, DbxActionSuccessHandlerFunction, DbxActionSuccessPair, DbxActionValueGetterDirectiveComputeInputsConfig, DbxActionValueGetterInstanceConfig, DbxActionValueGetterResult, DbxActionValueGetterValueGetterFunction, DbxActionWorkOrWorkProgress, DbxActionWorkProgress, DbxAppAuthFullState, DbxAppContextFullState, DbxAppContextState, DbxButtonDisplay, DbxButtonDisplayDelegate, DbxButtonDisplayType, DbxButtonInterceptor, DbxButtonWorking, DbxButtonWorkingProgress, DbxInjectionArrayEntry, DbxInjectionComponentConfig, DbxInjectionComponentConfigFactory, DbxInjectionComponentConfigWithoutInjector, DbxInjectionContextConfig, DbxInjectionTemplateConfig, DbxKnownAppContextState, DbxRouteModelIdParamRedirect, DbxRouteModelIdParamRedirectInstance, DbxRouteParamReader, DbxRouteParamReaderInstance, DbxRouterTransitionEvent, ExpandedClickableAnchorLinkTree, GoWithRouter, HasAuthRoleHookConfig, HasAuthRoleStateData, HasAuthRoleStateRoleConfig, HasAuthStateConfig, HasAuthStateData, HasAuthStateHookConfig, HasAuthStateObjectConfig, IconAndTitle, InjectableType, IsLatestSuccessfulRouteConfig, IsLoggedInHookConfig, IsLoggedInStateData, IsSegueRefActiveConfig, IsSegueRefActiveFunction, IsSegueRefActiveFunctionConfig, LatestSuccessfulRoutesConfig, LatestSuccessfulRoutesConfigRoute, LockSetComponent, LockSetComponentStoreConfig, MousableFunction, MouseEventPair, MouseEventType, NoAuthUserIdentifier, ParsedHasAuthRoleStateRoleConfig, PipeActionStoreFunction, ProvideDbxAppAuthConfig, ProvideDbxAppAuthRouterConfig, ProvideDbxAppAuthRouterStateConfig, ProvideFilterSourceDirectiveDefaultFilterFactoryFunction, RedirectForIdentifierParamHookInput, RedirectForUserIdentifierParamHookInput, SegueRef, SegueRefOptions, SegueRefOrSegueRefRouterLink, SegueRefRawSegueParams, SegueRefRouterLink, SimpleStorageAccessorConfig, SimpleStorageAccessorConverter, SimpleStorageAccessorDelegate, StorageAccessorFactoryConfig, UseActionStoreFunction };