@dereekb/dbx-core 13.17.0 → 13.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/dereekb-dbx-core.mjs +368 -107
- package/fesm2022/dereekb-dbx-core.mjs.map +1 -1
- package/package.json +5 -5
- package/types/dereekb-dbx-core.d.ts +388 -94
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-core",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.19.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "21.2.11",
|
|
7
7
|
"@angular/core": "21.2.11",
|
|
8
8
|
"@angular/router": "21.2.11",
|
|
9
|
-
"@dereekb/date": "13.
|
|
10
|
-
"@dereekb/rxjs": "13.
|
|
11
|
-
"@dereekb/util": "13.
|
|
12
|
-
"@dereekb/vitest": "13.
|
|
9
|
+
"@dereekb/date": "13.19.0",
|
|
10
|
+
"@dereekb/rxjs": "13.19.0",
|
|
11
|
+
"@dereekb/util": "13.19.0",
|
|
12
|
+
"@dereekb/vitest": "13.19.0",
|
|
13
13
|
"@ngrx/component-store": "^21.1.0",
|
|
14
14
|
"@ngrx/effects": "^21.1.0",
|
|
15
15
|
"@ngrx/store": "^21.1.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, Type, Provider, OnDestroy, Signal, OnInit, Injector, StaticProvider, NgModuleRef, TemplateRef, ViewRef, ModuleWithProviders,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, Type, Provider, OnDestroy, Signal, OnInit, Injector, StaticProvider, NgModuleRef, TemplateRef, ViewRef, ModuleWithProviders, PipeTransform, ViewContainerRef, ComponentRef, AbstractType, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
3
3
|
import * as _dereekb_util from '@dereekb/util';
|
|
4
|
-
import { SlashPathFolder, PercentNumber, Maybe, ReadableError, BooleanStringKeyArray, Destroyable, Initialized, GetterOrValue, FactoryWithInput, ArrayOrValue, AuthRoleSet, Milliseconds, FactoryWithRequiredInput, ObjectMap, AuthRole, SetIncludesMode, IterableOrValue, WebsiteUrl, MailToUrlInput, PhoneNumber, E164PhoneNumberWithOptionalExtension, EqualityComparatorFunction, TreeNode, ExpandTreeFunction, FlattenTreeFunction,
|
|
4
|
+
import { SlashPathFolder, PercentNumber, Maybe, ReadableError, BooleanStringKeyArray, Destroyable, Initialized, GetterOrValue, FactoryWithInput, ArrayOrValue, AuthRoleSet, Milliseconds, FactoryWithRequiredInput, ObjectMap, AuthRole, SetIncludesMode, IterableOrValue, EmailAddress, ModelKey, WebsiteUrl, MailToUrlInput, PhoneNumber, E164PhoneNumberWithOptionalExtension, EqualityComparatorFunction, TreeNode, ExpandTreeFunction, FlattenTreeFunction, DateOrDateString, Minutes, TimezoneString, EmptyObject, ModelKeyRef, StoredDataString, ReadStoredData, StoredData, StoredDataStorageKey, FullStorageObject, StorageObject, DestroyFunction, DestroyFunctionObject } from '@dereekb/util';
|
|
5
5
|
import * as _dereekb_rxjs from '@dereekb/rxjs';
|
|
6
6
|
import { AssetLoader, AssetPathRef, AssetLoaderAssetInstance, LoadingStateType, LoadingState, LockSet, MaybeObservableOrValue, IsCheckFunction, ObservableOrValue, Work, IsModifiedFunction, IsEqualFunction, WorkInstanceDelegate, LoadingContext, MaybeObservableOrValueGetter, SwitchMapToDefaultFilterFunction, ObservableOrValueGetter, FilterSourceConnector, FilterSource, FilterSourceInstance, FilterMap, FilterMapKey, FilterWithPreset, FilterPresetStringRef, FilterWithPresetOptional, DestroyOnNextUnlockConfig, SubscriptionObject, ListLoadingState, ListLoadingStateContextInput, MutableListLoadingStateContext, LoadingContextEvent, LoadingStateContextInput, MutableLoadingStateContext } from '@dereekb/rxjs';
|
|
7
7
|
import * as rxjs from 'rxjs';
|
|
@@ -3112,6 +3112,25 @@ interface DbxAppAuthStateUser {
|
|
|
3112
3112
|
userRoles: AuthRole[];
|
|
3113
3113
|
}
|
|
3114
3114
|
|
|
3115
|
+
/**
|
|
3116
|
+
* NgRx feature key for the impersonation sub-state within the auth feature.
|
|
3117
|
+
*/
|
|
3118
|
+
declare const DBX_APP_AUTH_IMPERSONATION_FEATURE_KEY = "impersonation";
|
|
3119
|
+
/**
|
|
3120
|
+
* Shape of the impersonation ("view as another user") state stored in the NgRx store.
|
|
3121
|
+
*
|
|
3122
|
+
* This slice is always present in the `app.auth` feature (it stays empty when impersonation is unused),
|
|
3123
|
+
* and is fed by the opt-in `DbxAppAuthImpersonationEffects` bridge mirroring {@link DbxAuthImpersonationService}.
|
|
3124
|
+
*
|
|
3125
|
+
* @see {@link DbxAppAuthStateService.authStateImpersonation$} for accessing this state reactively.
|
|
3126
|
+
*/
|
|
3127
|
+
interface DbxAppAuthStateImpersonation {
|
|
3128
|
+
/**
|
|
3129
|
+
* Identifier of the user currently being impersonated, or null/undefined when not impersonating.
|
|
3130
|
+
*/
|
|
3131
|
+
impersonatedUserId: Maybe<AuthUserIdentifier>;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3115
3134
|
/**
|
|
3116
3135
|
* NgRx feature key used to register the auth feature state in the global store.
|
|
3117
3136
|
*
|
|
@@ -3121,13 +3140,16 @@ declare const FEATURE_KEY = "app.auth";
|
|
|
3121
3140
|
/**
|
|
3122
3141
|
* Shape of the auth feature state slice, containing all auth-related sub-states.
|
|
3123
3142
|
*
|
|
3124
|
-
*
|
|
3125
|
-
*
|
|
3143
|
+
* Contains the user sub-state ({@link DbxAppAuthStateUser}) and the impersonation sub-state
|
|
3144
|
+
* ({@link DbxAppAuthStateImpersonation}). The impersonation slice is always present (it stays empty
|
|
3145
|
+
* unless an app opts into impersonation) so it can always be selected/listened to.
|
|
3126
3146
|
*
|
|
3127
3147
|
* @see {@link DbxAppAuthStateUser} for the user sub-state shape.
|
|
3148
|
+
* @see {@link DbxAppAuthStateImpersonation} for the impersonation sub-state shape.
|
|
3128
3149
|
*/
|
|
3129
3150
|
interface DbxAppAuthFeatureState {
|
|
3130
3151
|
[DBX_APP_AUTH_USER_FEATURE_KEY]: DbxAppAuthStateUser;
|
|
3152
|
+
[DBX_APP_AUTH_IMPERSONATION_FEATURE_KEY]: DbxAppAuthStateImpersonation;
|
|
3131
3153
|
}
|
|
3132
3154
|
/**
|
|
3133
3155
|
* Root state interface extension that declares how the auth feature integrates into the global NgRx store.
|
|
@@ -3152,6 +3174,7 @@ interface State {
|
|
|
3152
3174
|
*/
|
|
3153
3175
|
declare function reducers(state: DbxAppAuthFeatureState | undefined, action: Action): {
|
|
3154
3176
|
user: DbxAppAuthStateUser;
|
|
3177
|
+
impersonation: DbxAppAuthStateImpersonation;
|
|
3155
3178
|
};
|
|
3156
3179
|
/**
|
|
3157
3180
|
* NgRx feature selector that retrieves the entire {@link DbxAppAuthFeatureState} from the global store.
|
|
@@ -3165,15 +3188,22 @@ declare const selectAppAuthFeature: _ngrx_store.MemoizedSelector<object, DbxAppA
|
|
|
3165
3188
|
* @see {@link DbxAppAuthStateService.authStateUser$} for the observable wrapper.
|
|
3166
3189
|
*/
|
|
3167
3190
|
declare const selectDbxAppAuthUser: _ngrx_store.MemoizedSelector<object, DbxAppAuthStateUser, (s1: DbxAppAuthFeatureState) => DbxAppAuthStateUser>;
|
|
3191
|
+
/**
|
|
3192
|
+
* NgRx selector that retrieves the {@link DbxAppAuthStateImpersonation} from the auth feature state.
|
|
3193
|
+
*
|
|
3194
|
+
* @see {@link DbxAppAuthStateService.authStateImpersonation$} for the observable wrapper.
|
|
3195
|
+
*/
|
|
3196
|
+
declare const selectDbxAppAuthImpersonation: _ngrx_store.MemoizedSelector<object, DbxAppAuthStateImpersonation, (s1: DbxAppAuthFeatureState) => DbxAppAuthStateImpersonation>;
|
|
3168
3197
|
|
|
3169
3198
|
type index_d$1_DbxAppAuthFeatureState = DbxAppAuthFeatureState;
|
|
3170
3199
|
declare const index_d$1_FEATURE_KEY: typeof FEATURE_KEY;
|
|
3171
3200
|
type index_d$1_State = State;
|
|
3172
3201
|
declare const index_d$1_reducers: typeof reducers;
|
|
3173
3202
|
declare const index_d$1_selectAppAuthFeature: typeof selectAppAuthFeature;
|
|
3203
|
+
declare const index_d$1_selectDbxAppAuthImpersonation: typeof selectDbxAppAuthImpersonation;
|
|
3174
3204
|
declare const index_d$1_selectDbxAppAuthUser: typeof selectDbxAppAuthUser;
|
|
3175
3205
|
declare namespace index_d$1 {
|
|
3176
|
-
export { index_d$1_FEATURE_KEY as FEATURE_KEY, index_d$1_reducers as reducers, index_d$1_selectAppAuthFeature as selectAppAuthFeature, index_d$1_selectDbxAppAuthUser as selectDbxAppAuthUser };
|
|
3206
|
+
export { index_d$1_FEATURE_KEY as FEATURE_KEY, index_d$1_reducers as reducers, index_d$1_selectAppAuthFeature as selectAppAuthFeature, index_d$1_selectDbxAppAuthImpersonation as selectDbxAppAuthImpersonation, index_d$1_selectDbxAppAuthUser as selectDbxAppAuthUser };
|
|
3177
3207
|
export type { index_d$1_DbxAppAuthFeatureState as DbxAppAuthFeatureState, index_d$1_State as State };
|
|
3178
3208
|
}
|
|
3179
3209
|
|
|
@@ -3302,6 +3332,44 @@ declare namespace user_action_d {
|
|
|
3302
3332
|
};
|
|
3303
3333
|
}
|
|
3304
3334
|
|
|
3335
|
+
/**
|
|
3336
|
+
* NgRx action dispatched when impersonation of a user starts (or switches to a different target).
|
|
3337
|
+
*
|
|
3338
|
+
* Dispatched by `DbxAppAuthImpersonationEffects` in response to a `'start'`
|
|
3339
|
+
* {@link DbxAuthImpersonationEvent} from {@link DbxAuthImpersonationService.events$}.
|
|
3340
|
+
*
|
|
3341
|
+
* @see {@link stoppedImpersonating} for the corresponding clear event.
|
|
3342
|
+
*/
|
|
3343
|
+
declare const startedImpersonating: _ngrx_store.ActionCreator<"[App/Auth/Impersonation] Started", (props: {
|
|
3344
|
+
userId: AuthUserIdentifier;
|
|
3345
|
+
previousUserId?: Maybe<AuthUserIdentifier>;
|
|
3346
|
+
}) => {
|
|
3347
|
+
userId: AuthUserIdentifier;
|
|
3348
|
+
previousUserId?: Maybe<AuthUserIdentifier>;
|
|
3349
|
+
} & _ngrx_store.Action<"[App/Auth/Impersonation] Started">>;
|
|
3350
|
+
/**
|
|
3351
|
+
* NgRx action dispatched when impersonation is cleared and the app reverts to the real authenticated user.
|
|
3352
|
+
*
|
|
3353
|
+
* Dispatched by `DbxAppAuthImpersonationEffects` in response to an `'end'`
|
|
3354
|
+
* {@link DbxAuthImpersonationEvent} from {@link DbxAuthImpersonationService.events$}.
|
|
3355
|
+
*
|
|
3356
|
+
* @see {@link startedImpersonating} for the corresponding start event.
|
|
3357
|
+
*/
|
|
3358
|
+
declare const stoppedImpersonating: _ngrx_store.ActionCreator<"[App/Auth/Impersonation] Stopped", (props: {
|
|
3359
|
+
previousUserId?: Maybe<AuthUserIdentifier>;
|
|
3360
|
+
}) => {
|
|
3361
|
+
previousUserId?: Maybe<AuthUserIdentifier>;
|
|
3362
|
+
} & _ngrx_store.Action<"[App/Auth/Impersonation] Stopped">>;
|
|
3363
|
+
|
|
3364
|
+
declare const impersonation_action_d_startedImpersonating: typeof startedImpersonating;
|
|
3365
|
+
declare const impersonation_action_d_stoppedImpersonating: typeof stoppedImpersonating;
|
|
3366
|
+
declare namespace impersonation_action_d {
|
|
3367
|
+
export {
|
|
3368
|
+
impersonation_action_d_startedImpersonating as startedImpersonating,
|
|
3369
|
+
impersonation_action_d_stoppedImpersonating as stoppedImpersonating,
|
|
3370
|
+
};
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3305
3373
|
/**
|
|
3306
3374
|
* Actions related to the auth state.
|
|
3307
3375
|
*/
|
|
@@ -3309,6 +3377,7 @@ declare namespace user_action_d {
|
|
|
3309
3377
|
declare namespace index_d {
|
|
3310
3378
|
export {
|
|
3311
3379
|
auth_action_d as DbxAppAuthActions,
|
|
3380
|
+
impersonation_action_d as DbxAppAuthImpersonationActions,
|
|
3312
3381
|
user_action_d as DbxAppAuthUserActions,
|
|
3313
3382
|
};
|
|
3314
3383
|
}
|
|
@@ -3747,6 +3816,312 @@ declare function authRolesSetContainsAnyRoleFrom(roles: Observable<Maybe<Iterabl
|
|
|
3747
3816
|
*/
|
|
3748
3817
|
declare function authRolesSetContainsNoRolesFrom(roles: Observable<Maybe<Iterable<AuthRole>>>): OperatorFunction<AuthRoleSet, boolean>;
|
|
3749
3818
|
|
|
3819
|
+
/**
|
|
3820
|
+
* Discriminator for an {@link DbxAuthImpersonationEvent}.
|
|
3821
|
+
*
|
|
3822
|
+
* - `'start'` - a (new) user is now being impersonated, including switching directly from one target to another.
|
|
3823
|
+
* - `'end'` - impersonation was cleared and the app reverts to the real authenticated user.
|
|
3824
|
+
*/
|
|
3825
|
+
type DbxAuthImpersonationEventType = 'start' | 'end';
|
|
3826
|
+
/**
|
|
3827
|
+
* Reason an impersonation lifecycle event occurred.
|
|
3828
|
+
*
|
|
3829
|
+
* - `'manual'` - triggered by an explicit `startImpersonating()`/`stopImpersonating()` call (e.g. an admin action).
|
|
3830
|
+
* - `'auth'` - triggered automatically by an auth identity change or logout, which always clears impersonation.
|
|
3831
|
+
*/
|
|
3832
|
+
type DbxAuthImpersonationEventReason = 'manual' | 'auth';
|
|
3833
|
+
/**
|
|
3834
|
+
* Edge-triggered event emitted by {@link DbxAuthImpersonationService.events$} whenever impersonation
|
|
3835
|
+
* starts, ends, or switches to a different target user.
|
|
3836
|
+
*
|
|
3837
|
+
* A switch from user A to user B emits a single `'start'` event with `previousImpersonatedUserId = A`
|
|
3838
|
+
* and `impersonatedUserId = B`.
|
|
3839
|
+
*/
|
|
3840
|
+
interface DbxAuthImpersonationEvent {
|
|
3841
|
+
/**
|
|
3842
|
+
* The type of lifecycle event.
|
|
3843
|
+
*/
|
|
3844
|
+
readonly type: DbxAuthImpersonationEventType;
|
|
3845
|
+
/**
|
|
3846
|
+
* The user now being impersonated. Defined for `'start'` events, null/undefined for `'end'` events.
|
|
3847
|
+
*/
|
|
3848
|
+
readonly impersonatedUserId: Maybe<AuthUserIdentifier>;
|
|
3849
|
+
/**
|
|
3850
|
+
* The user that was being impersonated immediately before this event, if any.
|
|
3851
|
+
*/
|
|
3852
|
+
readonly previousImpersonatedUserId: Maybe<AuthUserIdentifier>;
|
|
3853
|
+
/**
|
|
3854
|
+
* Why the event occurred.
|
|
3855
|
+
*/
|
|
3856
|
+
readonly reason: DbxAuthImpersonationEventReason;
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
/**
|
|
3860
|
+
* Minimal, extensible view of an impersonated user, loaded on demand by a {@link DbxAuthImpersonationDelegate}.
|
|
3861
|
+
*
|
|
3862
|
+
* The generic `T` is the provider/app-specific raw payload (for example HelloSubs' `FindUserResult`)
|
|
3863
|
+
* carried on {@link DbxAuthImpersonationDetails.raw}, so a downstream consumer that produced it via the
|
|
3864
|
+
* delegate can read it back fully typed without re-fetching.
|
|
3865
|
+
*
|
|
3866
|
+
* @typeParam T - The provider-specific raw payload type carried on {@link DbxAuthImpersonationDetails.raw}.
|
|
3867
|
+
*/
|
|
3868
|
+
interface DbxAuthImpersonationDetails<T = unknown> {
|
|
3869
|
+
/**
|
|
3870
|
+
* Identifier of the impersonated user.
|
|
3871
|
+
*/
|
|
3872
|
+
readonly userId: AuthUserIdentifier;
|
|
3873
|
+
/**
|
|
3874
|
+
* Display name of the impersonated user, if available.
|
|
3875
|
+
*/
|
|
3876
|
+
readonly displayName?: Maybe<string>;
|
|
3877
|
+
/**
|
|
3878
|
+
* Email address of the impersonated user, if available.
|
|
3879
|
+
*/
|
|
3880
|
+
readonly email?: Maybe<EmailAddress>;
|
|
3881
|
+
/**
|
|
3882
|
+
* Avatar/photo URL of the impersonated user, if available.
|
|
3883
|
+
*/
|
|
3884
|
+
readonly photoURL?: Maybe<string>;
|
|
3885
|
+
/**
|
|
3886
|
+
* Authorization roles of the impersonated user, if available.
|
|
3887
|
+
*/
|
|
3888
|
+
readonly roles?: Maybe<AuthRoleSet>;
|
|
3889
|
+
/**
|
|
3890
|
+
* The raw payload the delegate fetched for this user. Lets the consumer that supplied the delegate
|
|
3891
|
+
* read its own provider object back without re-fetching.
|
|
3892
|
+
*/
|
|
3893
|
+
readonly raw: T;
|
|
3894
|
+
}
|
|
3895
|
+
/**
|
|
3896
|
+
* Abstract delegate used by {@link DbxAuthImpersonationService} to load details for an impersonated user.
|
|
3897
|
+
*
|
|
3898
|
+
* Optional: when no delegate is provided, {@link DbxAuthImpersonationService.impersonationDetails$} emits
|
|
3899
|
+
* `undefined`. Register a concrete implementation with {@link provideDbxAuthImpersonationDelegate} (or via
|
|
3900
|
+
* the `delegateType` option of `provideDbxAuthImpersonation`).
|
|
3901
|
+
*
|
|
3902
|
+
* @typeParam T - The provider-specific raw payload type carried on {@link DbxAuthImpersonationDetails.raw}.
|
|
3903
|
+
*/
|
|
3904
|
+
declare abstract class DbxAuthImpersonationDelegate<T = unknown> {
|
|
3905
|
+
/**
|
|
3906
|
+
* Loads details for the given impersonated user.
|
|
3907
|
+
*
|
|
3908
|
+
* @param userId - The identifier of the user being impersonated.
|
|
3909
|
+
* @returns Observable of the loaded details, or `undefined` when none can be loaded.
|
|
3910
|
+
*/
|
|
3911
|
+
abstract loadImpersonationDetails(userId: AuthUserIdentifier): Observable<Maybe<DbxAuthImpersonationDetails<T>>>;
|
|
3912
|
+
}
|
|
3913
|
+
/**
|
|
3914
|
+
* Creates Angular DI providers that register the given source type as a {@link DbxAuthImpersonationDelegate}.
|
|
3915
|
+
*
|
|
3916
|
+
* Registers the class itself (so it is instantiable) and aliases the abstract {@link DbxAuthImpersonationDelegate}
|
|
3917
|
+
* token to it via `useExisting`.
|
|
3918
|
+
*
|
|
3919
|
+
* @param sourceType - The class to provide as the delegate.
|
|
3920
|
+
* @returns Array of Angular providers.
|
|
3921
|
+
*
|
|
3922
|
+
* @typeParam S - The concrete delegate class type to register.
|
|
3923
|
+
*/
|
|
3924
|
+
declare function provideDbxAuthImpersonationDelegate<S extends DbxAuthImpersonationDelegate>(sourceType: Type<S>): Provider[];
|
|
3925
|
+
|
|
3926
|
+
/**
|
|
3927
|
+
* Optional, opt-in auth feature that lets an app act as a different user ("view as another user" / impersonation).
|
|
3928
|
+
*
|
|
3929
|
+
* This service is the source of truth for the impersonation state and is intentionally NOT `providedIn: 'root'`:
|
|
3930
|
+
* it is registered by `provideDbxAuthImpersonation()` so it is tree-shaken out of apps that do not opt in.
|
|
3931
|
+
*
|
|
3932
|
+
* It depends only on the abstract {@link DbxAuthService} (so it works in any dbx app, Firebase or not) and
|
|
3933
|
+
* resolves the {@link DbxAuthImpersonationService.effectiveUserId$} that downstream per-user stores key off of.
|
|
3934
|
+
* The compounding effects of impersonation (re-keying stores, banner UI, disabling edits, loading the viewed
|
|
3935
|
+
* user's details for display) are the responsibility of the consuming app.
|
|
3936
|
+
*
|
|
3937
|
+
* @typeParam T - The provider-specific raw payload type carried on {@link DbxAuthImpersonationDetails.raw}.
|
|
3938
|
+
*
|
|
3939
|
+
* @see {@link DbxAuthImpersonationTriggerDirective} for the route-driven trigger.
|
|
3940
|
+
* @see {@link DbxAuthImpersonationDelegate} for loading the impersonated user's details.
|
|
3941
|
+
*/
|
|
3942
|
+
declare class DbxAuthImpersonationService<T = unknown> {
|
|
3943
|
+
private readonly _dbxAuthService;
|
|
3944
|
+
private readonly _delegate;
|
|
3945
|
+
private readonly _impersonatedUserId;
|
|
3946
|
+
private readonly _events;
|
|
3947
|
+
/**
|
|
3948
|
+
* Tracks the latest real authenticated identifier so {@link startImpersonating} can ignore self-impersonation.
|
|
3949
|
+
*/
|
|
3950
|
+
private _currentRealUserId;
|
|
3951
|
+
/**
|
|
3952
|
+
* The user currently being impersonated, or null/undefined when not impersonating.
|
|
3953
|
+
*/
|
|
3954
|
+
readonly impersonatedUserId$: Observable<Maybe<AuthUserIdentifier>>;
|
|
3955
|
+
/**
|
|
3956
|
+
* True while a user is being impersonated.
|
|
3957
|
+
*/
|
|
3958
|
+
readonly isImpersonating$: Observable<boolean>;
|
|
3959
|
+
/**
|
|
3960
|
+
* The effective user the app should act as: the impersonated user when set, otherwise the real authenticated user.
|
|
3961
|
+
*/
|
|
3962
|
+
readonly effectiveUserId$: Observable<AuthUserIdentifier>;
|
|
3963
|
+
/**
|
|
3964
|
+
* Edge-triggered start/end signal. Subscribe to react to the impersonation lifecycle.
|
|
3965
|
+
*/
|
|
3966
|
+
readonly events$: Observable<DbxAuthImpersonationEvent>;
|
|
3967
|
+
/**
|
|
3968
|
+
* Lazily-loaded details of the impersonated user via the optional {@link DbxAuthImpersonationDelegate}.
|
|
3969
|
+
* Emits `undefined` when not impersonating or when no delegate is configured.
|
|
3970
|
+
*/
|
|
3971
|
+
readonly impersonationDetails$: Observable<Maybe<DbxAuthImpersonationDetails<T>>>;
|
|
3972
|
+
constructor();
|
|
3973
|
+
/**
|
|
3974
|
+
* Begins (or switches) impersonation of the given user.
|
|
3975
|
+
*
|
|
3976
|
+
* No-ops when `userId` is the {@link NO_AUTH_USER_IDENTIFIER} sentinel, the current real user, or already the
|
|
3977
|
+
* impersonated user. To revert to the real user, call {@link stopImpersonating}.
|
|
3978
|
+
*
|
|
3979
|
+
* @param userId - The identifier of the user to impersonate.
|
|
3980
|
+
*/
|
|
3981
|
+
startImpersonating(userId: AuthUserIdentifier): void;
|
|
3982
|
+
/**
|
|
3983
|
+
* Ends impersonation, reverting the effective user to the real authenticated user. No-ops if not impersonating.
|
|
3984
|
+
*/
|
|
3985
|
+
stopImpersonating(): void;
|
|
3986
|
+
private _clear;
|
|
3987
|
+
private _emit;
|
|
3988
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbxAuthImpersonationService<any>, never>;
|
|
3989
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DbxAuthImpersonationService<any>>;
|
|
3990
|
+
}
|
|
3991
|
+
|
|
3992
|
+
/**
|
|
3993
|
+
* Abstract delegate that receives model identifier observables from a {@link DbxRouteModelIdDirective}.
|
|
3994
|
+
*
|
|
3995
|
+
* Implement this class and register it as a provider to receive the id parameter read from the current route.
|
|
3996
|
+
* The directive will call {@link useRouteModelIdParamsObservable} during initialization.
|
|
3997
|
+
*
|
|
3998
|
+
* @example
|
|
3999
|
+
* ```ts
|
|
4000
|
+
* @Directive({
|
|
4001
|
+
* selector: '[myModelLoader]',
|
|
4002
|
+
* providers: provideDbxRouteModelIdDirectiveDelegate(MyModelLoaderDirective)
|
|
4003
|
+
* })
|
|
4004
|
+
* class MyModelLoaderDirective extends DbxRouteModelIdDirectiveDelegate {
|
|
4005
|
+
* useRouteModelIdParamsObservable(idFromParams$: Observable<Maybe<ModelKey>>, computedId$: Observable<Maybe<ModelKey>>): Subscription {
|
|
4006
|
+
* return computedId$.subscribe(id => this.loadModel(id));
|
|
4007
|
+
* }
|
|
4008
|
+
* }
|
|
4009
|
+
* ```
|
|
4010
|
+
*
|
|
4011
|
+
* @see {@link DbxRouteModelIdDirective} for the directive that provides the id observables
|
|
4012
|
+
* @see {@link provideDbxRouteModelIdDirectiveDelegate} for registering the delegate provider
|
|
4013
|
+
*/
|
|
4014
|
+
declare abstract class DbxRouteModelIdDirectiveDelegate {
|
|
4015
|
+
/**
|
|
4016
|
+
* Passes the param value and computed value from the DbxRouteModelIdDirective to this delegate.
|
|
4017
|
+
*
|
|
4018
|
+
* @param idFromParamsObs
|
|
4019
|
+
* @param computedIdObs
|
|
4020
|
+
*/
|
|
4021
|
+
abstract useRouteModelIdParamsObservable(idFromParamsObs: Observable<Maybe<ModelKey>>, computedIdObs: Observable<Maybe<ModelKey>>): Subscription;
|
|
4022
|
+
}
|
|
4023
|
+
/**
|
|
4024
|
+
* Creates Angular DI providers that register the given source type as a {@link DbxRouteModelIdDirectiveDelegate}.
|
|
4025
|
+
*
|
|
4026
|
+
* @param sourceType - The class to provide as the delegate.
|
|
4027
|
+
* @returns Array of Angular providers.
|
|
4028
|
+
*
|
|
4029
|
+
* @see {@link DbxRouteModelIdDirectiveDelegate}
|
|
4030
|
+
* @typeParam S - The concrete delegate class type to register.
|
|
4031
|
+
*/
|
|
4032
|
+
declare function provideDbxRouteModelIdDirectiveDelegate<S extends DbxRouteModelIdDirectiveDelegate>(sourceType: Type<S>): Provider[];
|
|
4033
|
+
/**
|
|
4034
|
+
* Abstract delegate that receives model key observables from a {@link DbxRouteModelKeyDirective}.
|
|
4035
|
+
*
|
|
4036
|
+
* Implement this class and register it as a provider to receive the key parameter read from the current route.
|
|
4037
|
+
* The directive will call {@link useRouteModelKeyParamsObservable} during initialization.
|
|
4038
|
+
*
|
|
4039
|
+
* @example
|
|
4040
|
+
* ```ts
|
|
4041
|
+
* @Directive({
|
|
4042
|
+
* selector: '[myModelKeyLoader]',
|
|
4043
|
+
* providers: provideDbxRouteModelKeyDirectiveDelegate(MyModelKeyLoaderDirective)
|
|
4044
|
+
* })
|
|
4045
|
+
* class MyModelKeyLoaderDirective extends DbxRouteModelKeyDirectiveDelegate {
|
|
4046
|
+
* useRouteModelKeyParamsObservable(keyFromParams$: Observable<Maybe<ModelKey>>, computedKey$: Observable<Maybe<ModelKey>>): Subscription {
|
|
4047
|
+
* return computedKey$.subscribe(key => this.loadModel(key));
|
|
4048
|
+
* }
|
|
4049
|
+
* }
|
|
4050
|
+
* ```
|
|
4051
|
+
*
|
|
4052
|
+
* @see {@link DbxRouteModelKeyDirective} for the directive that provides the key observables
|
|
4053
|
+
* @see {@link provideDbxRouteModelKeyDirectiveDelegate} for registering the delegate provider
|
|
4054
|
+
*/
|
|
4055
|
+
declare abstract class DbxRouteModelKeyDirectiveDelegate {
|
|
4056
|
+
/**
|
|
4057
|
+
* Passes the param value and computed value from the DbxRouteModelKeyDirective to this delegate.
|
|
4058
|
+
*
|
|
4059
|
+
* @param keyFromParamsObs
|
|
4060
|
+
* @param computedKeyObs
|
|
4061
|
+
*/
|
|
4062
|
+
abstract useRouteModelKeyParamsObservable(keyFromParamsObs: Observable<Maybe<ModelKey>>, computedKeyObs: Observable<Maybe<ModelKey>>): Subscription;
|
|
4063
|
+
}
|
|
4064
|
+
/**
|
|
4065
|
+
* Creates Angular DI providers that register the given source type as a {@link DbxRouteModelKeyDirectiveDelegate}.
|
|
4066
|
+
*
|
|
4067
|
+
* @param sourceType - The class to provide as the delegate.
|
|
4068
|
+
* @returns Array of Angular providers.
|
|
4069
|
+
*
|
|
4070
|
+
* @see {@link DbxRouteModelKeyDirectiveDelegate}
|
|
4071
|
+
* @typeParam S - The concrete delegate class type to register.
|
|
4072
|
+
*/
|
|
4073
|
+
declare function provideDbxRouteModelKeyDirectiveDelegate<S extends DbxRouteModelKeyDirectiveDelegate>(sourceType: Type<S>): Provider[];
|
|
4074
|
+
|
|
4075
|
+
/**
|
|
4076
|
+
* Route-driven trigger that begins/ends impersonation based on the model id read from the current route.
|
|
4077
|
+
*
|
|
4078
|
+
* Pair it with the {@link DbxRouteModelIdDirective} (`dbxRouteModelId`) in a template:
|
|
4079
|
+
*
|
|
4080
|
+
* ```html
|
|
4081
|
+
* <div dbxRouteModelId="uid" dbxAuthImpersonationTrigger>
|
|
4082
|
+
* <ui-view></ui-view>
|
|
4083
|
+
* </div>
|
|
4084
|
+
* ```
|
|
4085
|
+
*
|
|
4086
|
+
* When the route id is a non-sentinel user different from the logged-in user, impersonation starts;
|
|
4087
|
+
* otherwise it stops. Requires {@link provideDbxAuthImpersonation} to have registered the service.
|
|
4088
|
+
*/
|
|
4089
|
+
declare class DbxAuthImpersonationTriggerDirective extends DbxRouteModelIdDirectiveDelegate {
|
|
4090
|
+
private readonly _impersonationService;
|
|
4091
|
+
private readonly _dbxAuthService;
|
|
4092
|
+
useRouteModelIdParamsObservable(_idFromParamsObs: Observable<Maybe<ModelKey>>, computedIdObs: Observable<Maybe<ModelKey>>): Subscription;
|
|
4093
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbxAuthImpersonationTriggerDirective, never>;
|
|
4094
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxAuthImpersonationTriggerDirective, "[dbxAuthImpersonationTrigger]", never, {}, {}, never, never, true, never>;
|
|
4095
|
+
}
|
|
4096
|
+
|
|
4097
|
+
/**
|
|
4098
|
+
* Configuration for {@link provideDbxAuthImpersonation}.
|
|
4099
|
+
*/
|
|
4100
|
+
interface ProvideDbxAuthImpersonationConfig {
|
|
4101
|
+
/**
|
|
4102
|
+
* When true, registers the {@link DbxAppAuthImpersonationEffects} bridge that mirrors the service's
|
|
4103
|
+
* lifecycle into the `app.auth` impersonation NgRx slice. Defaults to false.
|
|
4104
|
+
*/
|
|
4105
|
+
readonly ngrx?: Maybe<boolean>;
|
|
4106
|
+
/**
|
|
4107
|
+
* Optional {@link DbxAuthImpersonationDelegate} implementation used to load the impersonated user's details.
|
|
4108
|
+
*/
|
|
4109
|
+
readonly delegateType?: Maybe<Type<DbxAuthImpersonationDelegate>>;
|
|
4110
|
+
}
|
|
4111
|
+
/**
|
|
4112
|
+
* Opt-in provider that enables the impersonation ("view as another user") feature.
|
|
4113
|
+
*
|
|
4114
|
+
* Registers {@link DbxAuthImpersonationService} (and the optional details delegate / NgRx bridge effect).
|
|
4115
|
+
* The route trigger {@link DbxAuthImpersonationTriggerDirective} is standalone and imported where used.
|
|
4116
|
+
*
|
|
4117
|
+
* The impersonation NgRx reducer slice itself is always registered by `provideDbxAppAuthState()`; this
|
|
4118
|
+
* provider only adds the service, the optional delegate, and (when `ngrx` is set) the effect that feeds the slice.
|
|
4119
|
+
*
|
|
4120
|
+
* @param config - Optional configuration.
|
|
4121
|
+
* @returns Angular `EnvironmentProviders` for the impersonation feature.
|
|
4122
|
+
*/
|
|
4123
|
+
declare function provideDbxAuthImpersonation(config?: ProvideDbxAuthImpersonationConfig): EnvironmentProviders;
|
|
4124
|
+
|
|
3750
4125
|
/**
|
|
3751
4126
|
* Combined configuration for provisioning all dbx-core authentication providers.
|
|
3752
4127
|
*
|
|
@@ -3927,6 +4302,12 @@ declare class DbxAppAuthStateService {
|
|
|
3927
4302
|
* Observable of the current {@link DbxAppAuthStateUser} from the NgRx store.
|
|
3928
4303
|
*/
|
|
3929
4304
|
readonly authStateUser$: rxjs.Observable<DbxAppAuthStateUser>;
|
|
4305
|
+
/**
|
|
4306
|
+
* Observable of the current {@link DbxAppAuthStateImpersonation} from the NgRx store.
|
|
4307
|
+
*
|
|
4308
|
+
* Stays empty unless an app opts into impersonation via `provideDbxAuthImpersonation({ ngrx: true })`.
|
|
4309
|
+
*/
|
|
4310
|
+
readonly authStateImpersonation$: rxjs.Observable<DbxAppAuthStateImpersonation>;
|
|
3930
4311
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxAppAuthStateService, never>;
|
|
3931
4312
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxAppAuthStateService>;
|
|
3932
4313
|
}
|
|
@@ -5472,8 +5853,6 @@ declare abstract class AbstractTransitionDirective {
|
|
|
5472
5853
|
* Extends {@link AbstractTransitionDirective} by subscribing to successful transitions during construction
|
|
5473
5854
|
* and invoking the abstract `updateForSuccessfulTransition()` method for each one.
|
|
5474
5855
|
*
|
|
5475
|
-
* Also provides a `zoneUpdateForSuccessfulTransition()` method that wraps the update call in `NgZone.run()`.
|
|
5476
|
-
*
|
|
5477
5856
|
* @example
|
|
5478
5857
|
* ```ts
|
|
5479
5858
|
* @Directive({ selector: '[myRouteWatcher]' })
|
|
@@ -5487,9 +5866,7 @@ declare abstract class AbstractTransitionDirective {
|
|
|
5487
5866
|
* @see {@link AbstractTransitionDirective}
|
|
5488
5867
|
*/
|
|
5489
5868
|
declare abstract class AbstractTransitionWatcherDirective extends AbstractTransitionDirective {
|
|
5490
|
-
protected readonly ngZone: NgZone;
|
|
5491
5869
|
constructor();
|
|
5492
|
-
protected zoneUpdateForSuccessfulTransition(): void;
|
|
5493
5870
|
protected abstract updateForSuccessfulTransition(): void;
|
|
5494
5871
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractTransitionWatcherDirective, never>;
|
|
5495
5872
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractTransitionWatcherDirective, never, never, {}, {}, never, never, true, never>;
|
|
@@ -5808,89 +6185,6 @@ declare function dbxRouteModelKeyParamRedirect(dbxRouterService: DbxRouterServic
|
|
|
5808
6185
|
*/
|
|
5809
6186
|
declare function dbxRouteModelIdParamRedirect(dbxRouterService: DbxRouterService, defaultParamKey?: string): DbxRouteModelIdParamRedirectInstance;
|
|
5810
6187
|
|
|
5811
|
-
/**
|
|
5812
|
-
* Abstract delegate that receives model identifier observables from a {@link DbxRouteModelIdDirective}.
|
|
5813
|
-
*
|
|
5814
|
-
* Implement this class and register it as a provider to receive the id parameter read from the current route.
|
|
5815
|
-
* The directive will call {@link useRouteModelIdParamsObservable} during initialization.
|
|
5816
|
-
*
|
|
5817
|
-
* @example
|
|
5818
|
-
* ```ts
|
|
5819
|
-
* @Directive({
|
|
5820
|
-
* selector: '[myModelLoader]',
|
|
5821
|
-
* providers: provideDbxRouteModelIdDirectiveDelegate(MyModelLoaderDirective)
|
|
5822
|
-
* })
|
|
5823
|
-
* class MyModelLoaderDirective extends DbxRouteModelIdDirectiveDelegate {
|
|
5824
|
-
* useRouteModelIdParamsObservable(idFromParams$: Observable<Maybe<ModelKey>>, computedId$: Observable<Maybe<ModelKey>>): Subscription {
|
|
5825
|
-
* return computedId$.subscribe(id => this.loadModel(id));
|
|
5826
|
-
* }
|
|
5827
|
-
* }
|
|
5828
|
-
* ```
|
|
5829
|
-
*
|
|
5830
|
-
* @see {@link DbxRouteModelIdDirective} for the directive that provides the id observables
|
|
5831
|
-
* @see {@link provideDbxRouteModelIdDirectiveDelegate} for registering the delegate provider
|
|
5832
|
-
*/
|
|
5833
|
-
declare abstract class DbxRouteModelIdDirectiveDelegate {
|
|
5834
|
-
/**
|
|
5835
|
-
* Passes the param value and computed value from the DbxRouteModelIdDirective to this delegate.
|
|
5836
|
-
*
|
|
5837
|
-
* @param idFromParamsObs
|
|
5838
|
-
* @param computedIdObs
|
|
5839
|
-
*/
|
|
5840
|
-
abstract useRouteModelIdParamsObservable(idFromParamsObs: Observable<Maybe<ModelKey>>, computedIdObs: Observable<Maybe<ModelKey>>): Subscription;
|
|
5841
|
-
}
|
|
5842
|
-
/**
|
|
5843
|
-
* Creates Angular DI providers that register the given source type as a {@link DbxRouteModelIdDirectiveDelegate}.
|
|
5844
|
-
*
|
|
5845
|
-
* @param sourceType - The class to provide as the delegate.
|
|
5846
|
-
* @returns Array of Angular providers.
|
|
5847
|
-
*
|
|
5848
|
-
* @see {@link DbxRouteModelIdDirectiveDelegate}
|
|
5849
|
-
* @typeParam S - The concrete delegate class type to register.
|
|
5850
|
-
*/
|
|
5851
|
-
declare function provideDbxRouteModelIdDirectiveDelegate<S extends DbxRouteModelIdDirectiveDelegate>(sourceType: Type<S>): Provider[];
|
|
5852
|
-
/**
|
|
5853
|
-
* Abstract delegate that receives model key observables from a {@link DbxRouteModelKeyDirective}.
|
|
5854
|
-
*
|
|
5855
|
-
* Implement this class and register it as a provider to receive the key parameter read from the current route.
|
|
5856
|
-
* The directive will call {@link useRouteModelKeyParamsObservable} during initialization.
|
|
5857
|
-
*
|
|
5858
|
-
* @example
|
|
5859
|
-
* ```ts
|
|
5860
|
-
* @Directive({
|
|
5861
|
-
* selector: '[myModelKeyLoader]',
|
|
5862
|
-
* providers: provideDbxRouteModelKeyDirectiveDelegate(MyModelKeyLoaderDirective)
|
|
5863
|
-
* })
|
|
5864
|
-
* class MyModelKeyLoaderDirective extends DbxRouteModelKeyDirectiveDelegate {
|
|
5865
|
-
* useRouteModelKeyParamsObservable(keyFromParams$: Observable<Maybe<ModelKey>>, computedKey$: Observable<Maybe<ModelKey>>): Subscription {
|
|
5866
|
-
* return computedKey$.subscribe(key => this.loadModel(key));
|
|
5867
|
-
* }
|
|
5868
|
-
* }
|
|
5869
|
-
* ```
|
|
5870
|
-
*
|
|
5871
|
-
* @see {@link DbxRouteModelKeyDirective} for the directive that provides the key observables
|
|
5872
|
-
* @see {@link provideDbxRouteModelKeyDirectiveDelegate} for registering the delegate provider
|
|
5873
|
-
*/
|
|
5874
|
-
declare abstract class DbxRouteModelKeyDirectiveDelegate {
|
|
5875
|
-
/**
|
|
5876
|
-
* Passes the param value and computed value from the DbxRouteModelKeyDirective to this delegate.
|
|
5877
|
-
*
|
|
5878
|
-
* @param keyFromParamsObs
|
|
5879
|
-
* @param computedKeyObs
|
|
5880
|
-
*/
|
|
5881
|
-
abstract useRouteModelKeyParamsObservable(keyFromParamsObs: Observable<Maybe<ModelKey>>, computedKeyObs: Observable<Maybe<ModelKey>>): Subscription;
|
|
5882
|
-
}
|
|
5883
|
-
/**
|
|
5884
|
-
* Creates Angular DI providers that register the given source type as a {@link DbxRouteModelKeyDirectiveDelegate}.
|
|
5885
|
-
*
|
|
5886
|
-
* @param sourceType - The class to provide as the delegate.
|
|
5887
|
-
* @returns Array of Angular providers.
|
|
5888
|
-
*
|
|
5889
|
-
* @see {@link DbxRouteModelKeyDirectiveDelegate}
|
|
5890
|
-
* @typeParam S - The concrete delegate class type to register.
|
|
5891
|
-
*/
|
|
5892
|
-
declare function provideDbxRouteModelKeyDirectiveDelegate<S extends DbxRouteModelKeyDirectiveDelegate>(sourceType: Type<S>): Provider[];
|
|
5893
|
-
|
|
5894
6188
|
/**
|
|
5895
6189
|
* Directive that retrieves the currently authenticated user's identifier from {@link DbxAuthService}
|
|
5896
6190
|
* and passes it directly to a {@link DbxRouteModelIdDirectiveDelegate}.
|
|
@@ -8174,5 +8468,5 @@ declare function safeUseCdRef(cdRef: ChangeDetectorRef, use: (cdRef: ChangeDetec
|
|
|
8174
8468
|
*/
|
|
8175
8469
|
declare const transformEmptyStringInputToUndefined: <T>(value: T | "") => T | undefined;
|
|
8176
8470
|
|
|
8177
|
-
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_BUTTON_ECHO_CONFIG, DBX_ACTION_HANDLER_LOCK_KEY, DBX_APP_APP_CONTEXT_STATE, DBX_APP_AUTH_ROUTER_EFFECTS_TOKEN, DBX_ASSET_LOADER_CONFIG_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, DEFAULT_ACTION_DISABLED_KEY, DEFAULT_ACTION_MAP_WORKING_DISABLED_KEY, DEFAULT_DBX_ACTION_BUTTON_ECHO_CONFIG, DEFAULT_DBX_ACTION_BUTTON_ERROR_ECHO, DEFAULT_DBX_ACTION_BUTTON_SUCCESS_ECHO, DEFAULT_DBX_BUTTON_ECHO_DURATION, DEFAULT_DBX_ROUTE_MODEL_ID_PARAM_ID_PARAM_KEY, DEFAULT_DBX_ROUTE_MODEL_ID_PARAM_KEY_PARAM_KEY, DEFAULT_DBX_ROUTE_MODEL_ID_PARAM_USE_PARAM_VALUE, DEFAULT_FILTER_SOURCE_DIRECTIVE_FILTER_TOKEN, DEFAULT_LOCAL_ASSET_BASE_URL, 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, DbxActionIsModifiedDirective, DbxActionIsWorkingDirective, DbxActionMapSourceDirective, DbxActionMapWorkingDisableDirective, DbxActionPreSuccessDirective, DbxActionSourceDirective, DbxActionState, DbxActionSuccessHandlerDirective, DbxActionTriggeredDirective, DbxActionValueDirective, DbxActionValueGetterInstance, DbxActionValueStreamDirective, DbxActionValueTriggerDirective, DbxActionWorkInstanceDelegate, DbxActionWorkable, DbxAnchor, DbxAngularRouterService, DbxAppAuthRouterEffects, DbxAppAuthRouterService, DbxAppAuthRoutes, DbxAppAuthStateService, DbxAppContextService, DbxAppContextStateDirective, DbxAppEnvironment, DbxAppEnvironmentService, DbxAuthHasAnyRoleDirective, DbxAuthHasRolesDirective, DbxAuthNotAnyRoleDirective, DbxAuthService, DbxButton, DbxButtonDirective, DbxButtonSegueDirective, DbxCoreActionModule, DbxCoreAngularRouterSegueModule, DbxCoreAssetLoader, 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, 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, createInjectorForInjectionComponentConfig, dbxActionWorkProgress, dbxButtonDisplayType, dbxInjectionComponentConfigIsEqual, 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, hasNonTrivialChildNodes, initInjectionComponent, 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, provideDbxActionButtonEchoConfig, provideDbxActionWorkable, provideDbxAnchor, provideDbxAppAuth, provideDbxAppAuthRouter, provideDbxAppAuthRouterState, provideDbxAppAuthState, provideDbxAppContextState, provideDbxAppEnvironment, provideDbxAssetLoader, provideDbxButton, provideDbxInjectionContext, provideDbxRouteModelIdDirectiveDelegate, provideDbxRouteModelKeyDirectiveDelegate, provideDbxStorage, provideDbxUIRouterService, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, switchMapDbxInjectionComponentConfig, tapDetectChanges, tapSafeMarkForCheck, transformEmptyStringInputToUndefined, useActionStore };
|
|
8178
|
-
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, DbxActionButtonEchoConfig, DbxActionContextMachineConfig, DbxActionContextSourceReference, DbxActionDisabledKey, DbxActionErrorHandlerFunction, DbxActionRejectedPair, DbxActionSuccessHandlerFunction, DbxActionSuccessPair, DbxActionValueGetterDirectiveComputeInputsConfig, DbxActionValueGetterInstanceConfig, DbxActionValueGetterResult, DbxActionValueGetterValueGetterFunction, DbxActionWorkOrWorkProgress, DbxActionWorkProgress, DbxAppAuthFullState, DbxAppContextFullState, DbxAppContextState, DbxButtonDisplay, DbxButtonDisplayDelegate, DbxButtonDisplayType, DbxButtonEcho, DbxButtonInterceptor, DbxButtonWorking, DbxButtonWorkingProgress, DbxCoreAssetLoaderConfig, DbxInjectionArrayEntry, DbxInjectionComponentConfig, DbxInjectionComponentConfigFactory, DbxInjectionComponentConfigWithoutInjector, DbxInjectionComponentInjectorParams, 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 };
|
|
8471
|
+
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_BUTTON_ECHO_CONFIG, DBX_ACTION_HANDLER_LOCK_KEY, DBX_APP_APP_CONTEXT_STATE, DBX_APP_AUTH_ROUTER_EFFECTS_TOKEN, DBX_ASSET_LOADER_CONFIG_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, DEFAULT_ACTION_DISABLED_KEY, DEFAULT_ACTION_MAP_WORKING_DISABLED_KEY, DEFAULT_DBX_ACTION_BUTTON_ECHO_CONFIG, DEFAULT_DBX_ACTION_BUTTON_ERROR_ECHO, DEFAULT_DBX_ACTION_BUTTON_SUCCESS_ECHO, DEFAULT_DBX_BUTTON_ECHO_DURATION, DEFAULT_DBX_ROUTE_MODEL_ID_PARAM_ID_PARAM_KEY, DEFAULT_DBX_ROUTE_MODEL_ID_PARAM_KEY_PARAM_KEY, DEFAULT_DBX_ROUTE_MODEL_ID_PARAM_USE_PARAM_VALUE, DEFAULT_FILTER_SOURCE_DIRECTIVE_FILTER_TOKEN, DEFAULT_LOCAL_ASSET_BASE_URL, 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, DbxActionIsModifiedDirective, DbxActionIsWorkingDirective, DbxActionMapSourceDirective, DbxActionMapWorkingDisableDirective, DbxActionPreSuccessDirective, DbxActionSourceDirective, DbxActionState, DbxActionSuccessHandlerDirective, DbxActionTriggeredDirective, DbxActionValueDirective, DbxActionValueGetterInstance, DbxActionValueStreamDirective, DbxActionValueTriggerDirective, DbxActionWorkInstanceDelegate, DbxActionWorkable, DbxAnchor, DbxAngularRouterService, DbxAppAuthRouterEffects, DbxAppAuthRouterService, DbxAppAuthRoutes, DbxAppAuthStateService, DbxAppContextService, DbxAppContextStateDirective, DbxAppEnvironment, DbxAppEnvironmentService, DbxAuthHasAnyRoleDirective, DbxAuthHasRolesDirective, DbxAuthImpersonationDelegate, DbxAuthImpersonationService, DbxAuthImpersonationTriggerDirective, DbxAuthNotAnyRoleDirective, DbxAuthService, DbxButton, DbxButtonDirective, DbxButtonSegueDirective, DbxCoreActionModule, DbxCoreAngularRouterSegueModule, DbxCoreAssetLoader, 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, 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, createInjectorForInjectionComponentConfig, dbxActionWorkProgress, dbxButtonDisplayType, dbxInjectionComponentConfigIsEqual, 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, hasNonTrivialChildNodes, initInjectionComponent, 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, provideDbxActionButtonEchoConfig, provideDbxActionWorkable, provideDbxAnchor, provideDbxAppAuth, provideDbxAppAuthRouter, provideDbxAppAuthRouterState, provideDbxAppAuthState, provideDbxAppContextState, provideDbxAppEnvironment, provideDbxAssetLoader, provideDbxAuthImpersonation, provideDbxAuthImpersonationDelegate, provideDbxButton, provideDbxInjectionContext, provideDbxRouteModelIdDirectiveDelegate, provideDbxRouteModelKeyDirectiveDelegate, provideDbxStorage, provideDbxUIRouterService, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, switchMapDbxInjectionComponentConfig, tapDetectChanges, tapSafeMarkForCheck, transformEmptyStringInputToUndefined, useActionStore };
|
|
8472
|
+
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, DbxActionButtonEchoConfig, DbxActionContextMachineConfig, DbxActionContextSourceReference, DbxActionDisabledKey, DbxActionErrorHandlerFunction, DbxActionRejectedPair, DbxActionSuccessHandlerFunction, DbxActionSuccessPair, DbxActionValueGetterDirectiveComputeInputsConfig, DbxActionValueGetterInstanceConfig, DbxActionValueGetterResult, DbxActionValueGetterValueGetterFunction, DbxActionWorkOrWorkProgress, DbxActionWorkProgress, DbxAppAuthFullState, DbxAppContextFullState, DbxAppContextState, DbxAuthImpersonationDetails, DbxAuthImpersonationEvent, DbxAuthImpersonationEventReason, DbxAuthImpersonationEventType, DbxButtonDisplay, DbxButtonDisplayDelegate, DbxButtonDisplayType, DbxButtonEcho, DbxButtonInterceptor, DbxButtonWorking, DbxButtonWorkingProgress, DbxCoreAssetLoaderConfig, DbxInjectionArrayEntry, DbxInjectionComponentConfig, DbxInjectionComponentConfigFactory, DbxInjectionComponentConfigWithoutInjector, DbxInjectionComponentInjectorParams, 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, ProvideDbxAuthImpersonationConfig, ProvideFilterSourceDirectiveDefaultFilterFactoryFunction, RedirectForIdentifierParamHookInput, RedirectForUserIdentifierParamHookInput, SegueRef, SegueRefOptions, SegueRefOrSegueRefRouterLink, SegueRefRawSegueParams, SegueRefRouterLink, SimpleStorageAccessorConfig, SimpleStorageAccessorConverter, SimpleStorageAccessorDelegate, StorageAccessorFactoryConfig, UseActionStoreFunction };
|