@dereekb/dbx-core 13.6.3 → 13.6.4
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.
|
@@ -3,7 +3,7 @@ import { inject, DestroyRef, input, Directive, computed, signal, Injectable, for
|
|
|
3
3
|
import { SubscriptionObject, LockSet, loadingStateContext, listLoadingStateContext, filterMaybe, LoadingStateType, beginLoading, idleLoadingState, errorResult, successResult, scanCount, workFactory, asObservable, combineLatestFromMapValuesObsFn, emitDelayObs, makeIsModifiedFunctionObservable, returnIfIs, timeoutStartWith, onFalseToTrue, onTrueToFalse, setContainsAllValuesFrom, setContainsNoValueFrom, maybeValueFromObservableOrValue, distinctUntilKeysChange, maybeValueFromObservableOrValueGetter, switchMapToDefault, asObservableFromGetter, FilterSource, FilterSourceConnector, FilterSourceInstance, FilterMap, skipAllInitialMaybe, switchMapObject } from '@dereekb/rxjs';
|
|
4
4
|
import { getValueFromGetter, DestroyFunctionObject, isNotFalse, isDefinedAndNotFalse, BooleanStringKeyArrayUtility, reduceBooleansWithOrFn, asGetter, toReadableError, hasValueOrNotEmpty, isGetter, asArray, setIncludes, isAllowed, maybeSet, iterableToSet, expandTreeFunction, flattenTreeToArrayFunction, expandFlattenTreeFunction, mailToUrlString, telUrlString, mergeObjects, KeyValueTypleValueFilter, filterMaybeArrayValues, defaultForwardFunctionFactory, MINUTES_IN_DAY, MINUTES_IN_HOUR, millisecondsToMinutes, cutString, dollarAmountString, objectHasKey, objectHasKeys, safeEqualityComparatorFunction, mergeArrays, flattenArrayOrValueArray, promiseReference, DataIsExpiredError, DataDoesNotExistError, hasNonNullValue, unixDateTimeSecondsNumberForNow, isThrottled, splitJoinRemainder, StorageObjectUtility, SHARED_MEMORY_STORAGE } from '@dereekb/util';
|
|
5
5
|
import { switchMap, first, distinctUntilChanged, filter, EMPTY, debounce, interval, throttle, exhaustMap, mergeMap, map, shareReplay, combineLatest, startWith, of, delay, BehaviorSubject, tap, combineLatestWith, catchError, withLatestFrom, firstValueFrom, takeUntil, Subject, Observable } from 'rxjs';
|
|
6
|
-
import { toObservable,
|
|
6
|
+
import { toObservable, toSignal, outputToObservable } from '@angular/core/rxjs-interop';
|
|
7
7
|
import { ComponentStore } from '@ngrx/component-store';
|
|
8
8
|
import { Actions, ofType, createEffect, provideEffects } from '@ngrx/effects';
|
|
9
9
|
import { createAction, props, createReducer, on, combineReducers, createFeatureSelector, createSelector, Store, provideState } from '@ngrx/store';
|
|
@@ -4326,6 +4326,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.3", ngImpor
|
|
|
4326
4326
|
}]
|
|
4327
4327
|
}] });
|
|
4328
4328
|
|
|
4329
|
+
// MARK: Echo
|
|
4330
|
+
/**
|
|
4331
|
+
* Default duration in milliseconds for a button echo display.
|
|
4332
|
+
*/
|
|
4333
|
+
const DEFAULT_DBX_BUTTON_ECHO_DURATION = 2000;
|
|
4329
4334
|
/**
|
|
4330
4335
|
* Abstract base class defining the reactive interface for a button component.
|
|
4331
4336
|
*
|
|
@@ -4409,11 +4414,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.3", ngImpor
|
|
|
4409
4414
|
}]
|
|
4410
4415
|
}], ctorParameters: () => [] });
|
|
4411
4416
|
|
|
4417
|
+
/**
|
|
4418
|
+
* Default success echo configuration.
|
|
4419
|
+
*/
|
|
4420
|
+
const DEFAULT_DBX_ACTION_BUTTON_SUCCESS_ECHO = { icon: 'check', color: 'success', iconOnly: true, duration: 2000 };
|
|
4421
|
+
/**
|
|
4422
|
+
* Default error echo configuration.
|
|
4423
|
+
*/
|
|
4424
|
+
const DEFAULT_DBX_ACTION_BUTTON_ERROR_ECHO = { icon: 'error', color: 'warn', iconOnly: true, duration: 2000 };
|
|
4425
|
+
/**
|
|
4426
|
+
* Default echo configuration used by {@link DbxActionButtonDirective}.
|
|
4427
|
+
*/
|
|
4428
|
+
const DEFAULT_DBX_ACTION_BUTTON_ECHO_CONFIG = {
|
|
4429
|
+
onSuccess: DEFAULT_DBX_ACTION_BUTTON_SUCCESS_ECHO,
|
|
4430
|
+
onError: DEFAULT_DBX_ACTION_BUTTON_ERROR_ECHO
|
|
4431
|
+
};
|
|
4432
|
+
/**
|
|
4433
|
+
* Injection token for providing an app-wide default {@link DbxActionButtonEchoConfig}.
|
|
4434
|
+
*
|
|
4435
|
+
* When provided, all {@link DbxActionButtonDirective} instances will use this config
|
|
4436
|
+
* unless overridden by the per-instance `dbxActionButtonEcho` input.
|
|
4437
|
+
*
|
|
4438
|
+
* @example
|
|
4439
|
+
* ```typescript
|
|
4440
|
+
* providers: [
|
|
4441
|
+
* { provide: DBX_ACTION_BUTTON_ECHO_CONFIG, useValue: { onSuccess: false, onError: false } }
|
|
4442
|
+
* ]
|
|
4443
|
+
* ```
|
|
4444
|
+
*/
|
|
4445
|
+
const DBX_ACTION_BUTTON_ECHO_CONFIG = new InjectionToken('DbxActionButtonEchoConfig');
|
|
4446
|
+
/**
|
|
4447
|
+
* Creates a provider for the app-wide {@link DbxActionButtonEchoConfig}.
|
|
4448
|
+
*
|
|
4449
|
+
* @example
|
|
4450
|
+
* ```typescript
|
|
4451
|
+
* providers: [
|
|
4452
|
+
* provideDbxActionButtonEchoConfig({ onSuccess: { icon: 'done', color: 'ok' }, onError: false })
|
|
4453
|
+
* ]
|
|
4454
|
+
* ```
|
|
4455
|
+
*/
|
|
4456
|
+
function provideDbxActionButtonEchoConfig(config) {
|
|
4457
|
+
return { provide: DBX_ACTION_BUTTON_ECHO_CONFIG, useValue: config };
|
|
4458
|
+
}
|
|
4412
4459
|
/**
|
|
4413
4460
|
* Links a {@link DbxButton} to an action context, synchronizing the button's
|
|
4414
4461
|
* disabled and working states with the action's lifecycle and forwarding
|
|
4415
4462
|
* button clicks as action triggers.
|
|
4416
4463
|
*
|
|
4464
|
+
* Also provides automatic visual echo feedback on action success and error,
|
|
4465
|
+
* configurable via the `dbxActionButtonEcho` input or the {@link DBX_ACTION_BUTTON_ECHO_CONFIG} injection token.
|
|
4466
|
+
*
|
|
4417
4467
|
* Extends {@link DbxActionButtonTriggerDirective} by also binding working/disabled state.
|
|
4418
4468
|
*
|
|
4419
4469
|
* @example
|
|
@@ -4422,8 +4472,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.3", ngImpor
|
|
|
4422
4472
|
* <button dbxButton dbxActionButton [text]="'Submit'">Submit</button>
|
|
4423
4473
|
* </div>
|
|
4424
4474
|
* ```
|
|
4475
|
+
*
|
|
4476
|
+
* @example
|
|
4477
|
+
* ```html
|
|
4478
|
+
* <!-- Custom echo config -->
|
|
4479
|
+
* <button dbxButton dbxActionButton [dbxActionButtonEcho]="{ onSuccess: { icon: 'done', color: 'ok' } }">
|
|
4480
|
+
* Save
|
|
4481
|
+
* </button>
|
|
4482
|
+
* ```
|
|
4425
4483
|
*/
|
|
4426
4484
|
class DbxActionButtonDirective extends DbxActionButtonTriggerDirective {
|
|
4485
|
+
_injectedEchoConfig = inject(DBX_ACTION_BUTTON_ECHO_CONFIG, { optional: true });
|
|
4486
|
+
/**
|
|
4487
|
+
* Per-instance echo configuration. Merges over the injected default.
|
|
4488
|
+
* Pass `false` to disable all echoes for this button.
|
|
4489
|
+
*/
|
|
4490
|
+
dbxActionButtonEcho = input(...(ngDevMode ? [undefined, { debugName: "dbxActionButtonEcho" }] : /* istanbul ignore next */ []));
|
|
4427
4491
|
constructor() {
|
|
4428
4492
|
super();
|
|
4429
4493
|
cleanSubscription(this.source.isWorkingOrWorkProgress$.subscribe((working) => {
|
|
@@ -4432,9 +4496,39 @@ class DbxActionButtonDirective extends DbxActionButtonTriggerDirective {
|
|
|
4432
4496
|
cleanSubscription(this.source.isDisabled$.subscribe((disabled) => {
|
|
4433
4497
|
this.dbxButton.setDisabled(disabled);
|
|
4434
4498
|
}));
|
|
4499
|
+
// Echo on success
|
|
4500
|
+
cleanSubscription(this.source.isSuccess$.pipe(filter((isSuccess) => isSuccess)).subscribe(() => {
|
|
4501
|
+
const config = this._resolvedEchoConfig();
|
|
4502
|
+
const onSuccess = config.onSuccess;
|
|
4503
|
+
if (onSuccess !== false && onSuccess != null) {
|
|
4504
|
+
this.dbxButton.showButtonEcho(onSuccess);
|
|
4505
|
+
}
|
|
4506
|
+
}));
|
|
4507
|
+
// Echo on error
|
|
4508
|
+
cleanSubscription(this.source.rejected$.pipe(filterMaybe()).subscribe(() => {
|
|
4509
|
+
const config = this._resolvedEchoConfig();
|
|
4510
|
+
const onError = config.onError;
|
|
4511
|
+
if (onError !== false && onError != null) {
|
|
4512
|
+
this.dbxButton.showButtonEcho(onError);
|
|
4513
|
+
}
|
|
4514
|
+
}));
|
|
4515
|
+
}
|
|
4516
|
+
_resolvedEchoConfig() {
|
|
4517
|
+
const instanceConfig = this.dbxActionButtonEcho();
|
|
4518
|
+
// false disables all echoes
|
|
4519
|
+
if (instanceConfig === false) {
|
|
4520
|
+
return { onSuccess: false, onError: false };
|
|
4521
|
+
}
|
|
4522
|
+
const injectedConfig = this._injectedEchoConfig;
|
|
4523
|
+
const result = {
|
|
4524
|
+
...DEFAULT_DBX_ACTION_BUTTON_ECHO_CONFIG,
|
|
4525
|
+
...injectedConfig,
|
|
4526
|
+
...instanceConfig
|
|
4527
|
+
};
|
|
4528
|
+
return result;
|
|
4435
4529
|
}
|
|
4436
4530
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.3", ngImport: i0, type: DbxActionButtonDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4437
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
4531
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.3", type: DbxActionButtonDirective, isStandalone: true, selector: "[dbxActionButton]", inputs: { dbxActionButtonEcho: { classPropertyName: "dbxActionButtonEcho", publicName: "dbxActionButtonEcho", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0 });
|
|
4438
4532
|
}
|
|
4439
4533
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.3", ngImport: i0, type: DbxActionButtonDirective, decorators: [{
|
|
4440
4534
|
type: Directive,
|
|
@@ -4442,7 +4536,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.3", ngImpor
|
|
|
4442
4536
|
selector: '[dbxActionButton]',
|
|
4443
4537
|
standalone: true
|
|
4444
4538
|
}]
|
|
4445
|
-
}], ctorParameters: () => [] });
|
|
4539
|
+
}], ctorParameters: () => [], propDecorators: { dbxActionButtonEcho: [{ type: i0.Input, args: [{ isSignal: true, alias: "dbxActionButtonEcho", required: false }] }] } });
|
|
4446
4540
|
|
|
4447
4541
|
// MARK: Button Directives
|
|
4448
4542
|
/**
|
|
@@ -4506,6 +4600,12 @@ class AbstractDbxButtonDirective {
|
|
|
4506
4600
|
*/
|
|
4507
4601
|
_buttonClick = completeOnDestroy(new Subject());
|
|
4508
4602
|
_buttonInterceptor = completeOnDestroy(new BehaviorSubject(undefined));
|
|
4603
|
+
_buttonEcho$ = completeOnDestroy(new Subject());
|
|
4604
|
+
/**
|
|
4605
|
+
* Current active button echo, or undefined when no echo is active.
|
|
4606
|
+
* Each new echo cancels the previous one via switchMap.
|
|
4607
|
+
*/
|
|
4608
|
+
buttonEchoSignal = toSignal(this._buttonEcho$.pipe(switchMap((echo) => emitDelayObs(echo, undefined, echo.duration ?? DEFAULT_DBX_BUTTON_ECHO_DURATION))), { initialValue: undefined });
|
|
4509
4609
|
buttonClick = output();
|
|
4510
4610
|
ariaLabel = input(undefined, ...(ngDevMode ? [{ debugName: "ariaLabel" }] : /* istanbul ignore next */ []));
|
|
4511
4611
|
disabled = input(false, { ...(ngDevMode ? { debugName: "disabled" } : /* istanbul ignore next */ {}), transform: Boolean });
|
|
@@ -4562,6 +4662,9 @@ class AbstractDbxButtonDirective {
|
|
|
4562
4662
|
setDisplayContent(content) {
|
|
4563
4663
|
this._buttonDisplayContentSignal.set(content);
|
|
4564
4664
|
}
|
|
4665
|
+
showButtonEcho(echo) {
|
|
4666
|
+
this._buttonEcho$.next(echo);
|
|
4667
|
+
}
|
|
4565
4668
|
/**
|
|
4566
4669
|
* Sets the button interceptor. If any interceptor is already set, it is replaced.
|
|
4567
4670
|
*
|
|
@@ -8867,5 +8970,5 @@ function checkNgContentWrapperHasContent(ref) {
|
|
|
8867
8970
|
* Generated bundle index. Do not edit.
|
|
8868
8971
|
*/
|
|
8869
8972
|
|
|
8870
|
-
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, dbxInjectionComponentConfigIsEqual, dbxRouteModelIdParamRedirect, dbxRouteModelKeyParamRedirect, dbxRouteParamReaderInstance, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, fromAllActionContextStoreSourceMapSources, index as fromDbxAppAuth, index$2 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$1 as onDbxAppAuth, index$3 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 };
|
|
8973
|
+
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_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_DBX_ACTION_BUTTON_ECHO_CONFIG, DEFAULT_DBX_ACTION_BUTTON_ERROR_ECHO, DEFAULT_DBX_ACTION_BUTTON_SUCCESS_ECHO, DEFAULT_DBX_BUTTON_ECHO_DURATION, 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, dbxInjectionComponentConfigIsEqual, dbxRouteModelIdParamRedirect, dbxRouteModelKeyParamRedirect, dbxRouteParamReaderInstance, defaultStorageObjectFactory, enableHasAuthRoleHook, enableHasAuthStateHook, enableIsLoggedInHook, expandClickableAnchorLinkTree, expandClickableAnchorLinkTreeNode, expandClickableAnchorLinkTrees, filterTransitionEvent, filterTransitionSuccess, flattenExpandedClickableAnchorLinkTree, flattenExpandedClickableAnchorLinkTreeToLinks, fromAllActionContextStoreSourceMapSources, index as fromDbxAppAuth, index$2 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$1 as onDbxAppAuth, index$3 as onDbxAppContext, onRouterTransitionEventType, onRouterTransitionSuccessEvent, pipeActionStore, provideActionStoreSource, provideDbxActionButtonEchoConfig, 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 };
|
|
8871
8974
|
//# sourceMappingURL=dereekb-dbx-core.mjs.map
|