@dereekb/dbx-core 13.8.0 → 13.10.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.
|
@@ -555,6 +555,11 @@ class DbxActionContextStoreSourceInstance {
|
|
|
555
555
|
*
|
|
556
556
|
* Can be disabled by setting `dbxActionAutoModify` to `false`.
|
|
557
557
|
*
|
|
558
|
+
* @dbxAction
|
|
559
|
+
* @dbxActionSlug auto-modify
|
|
560
|
+
* @dbxActionStateInteraction IDLE
|
|
561
|
+
* @dbxActionConsumesContext
|
|
562
|
+
*
|
|
558
563
|
* @example
|
|
559
564
|
* ```html
|
|
560
565
|
* <div dbxAction>
|
|
@@ -616,6 +621,11 @@ const DBX_ACTION_AUTO_TRIGGER_INSTANT_TRIGGER_DEBOUNCE = 10;
|
|
|
616
621
|
* Useful for auto-save scenarios where data changes should automatically submit without
|
|
617
622
|
* requiring an explicit user action. Use with care to avoid triggering loops.
|
|
618
623
|
*
|
|
624
|
+
* @dbxAction
|
|
625
|
+
* @dbxActionSlug auto-trigger
|
|
626
|
+
* @dbxActionStateInteraction IDLE, TRIGGERED
|
|
627
|
+
* @dbxActionConsumesContext
|
|
628
|
+
*
|
|
619
629
|
* @example
|
|
620
630
|
* ```html
|
|
621
631
|
* <div dbxAction>
|
|
@@ -788,39 +798,62 @@ function dbxActionWorkProgress(workOrWorkProgress, progressPercent) {
|
|
|
788
798
|
}
|
|
789
799
|
/**
|
|
790
800
|
* Used by ActionContextState to denote what state the action is in.
|
|
801
|
+
*
|
|
802
|
+
* @dbxActionStateEnum
|
|
791
803
|
*/
|
|
792
804
|
var DbxActionState;
|
|
793
805
|
(function (DbxActionState) {
|
|
794
806
|
/**
|
|
795
807
|
* No action in progress. Waiting for the trigger.
|
|
808
|
+
*
|
|
809
|
+
* @dbxActionStateTransitionsFrom RESOLVED, REJECTED, DISABLED
|
|
810
|
+
* @dbxActionStateTransitionsTo TRIGGERED, DISABLED
|
|
796
811
|
*/
|
|
797
812
|
DbxActionState["IDLE"] = "idle";
|
|
798
813
|
/**
|
|
799
814
|
* Idle state that can be set to show that the source is not yet ready.
|
|
815
|
+
*
|
|
816
|
+
* @dbxActionStateTransitionsFrom IDLE, RESOLVED, REJECTED
|
|
817
|
+
* @dbxActionStateTransitionsTo IDLE
|
|
800
818
|
*/
|
|
801
819
|
DbxActionState["DISABLED"] = "disabled";
|
|
802
820
|
/**
|
|
803
821
|
* The action was triggered. We wait (and allow) the value to be updated.
|
|
822
|
+
*
|
|
823
|
+
* @dbxActionStateTransitionsFrom IDLE
|
|
824
|
+
* @dbxActionStateTransitionsTo VALUE_READY
|
|
804
825
|
*/
|
|
805
826
|
DbxActionState["TRIGGERED"] = "triggered";
|
|
806
827
|
/**
|
|
807
828
|
* The trigger was accepted and the value is updated. It should begin working immediately.
|
|
808
829
|
*
|
|
809
830
|
* ValueReady cannot be set until triggered is set.
|
|
831
|
+
*
|
|
832
|
+
* @dbxActionStateTransitionsFrom TRIGGERED
|
|
833
|
+
* @dbxActionStateTransitionsTo WORKING
|
|
810
834
|
*/
|
|
811
835
|
DbxActionState["VALUE_READY"] = "valueReady";
|
|
812
836
|
/**
|
|
813
837
|
* The action is in progress.
|
|
838
|
+
*
|
|
839
|
+
* @dbxActionStateTransitionsFrom VALUE_READY
|
|
840
|
+
* @dbxActionStateTransitionsTo RESOLVED, REJECTED
|
|
814
841
|
*/
|
|
815
842
|
DbxActionState["WORKING"] = "working";
|
|
816
843
|
/**
|
|
817
844
|
* The trigger, action, or value was rejected due to an error or other issue.
|
|
818
845
|
*
|
|
819
846
|
* An error may be specified optionally.
|
|
847
|
+
*
|
|
848
|
+
* @dbxActionStateTransitionsFrom WORKING
|
|
849
|
+
* @dbxActionStateTransitionsTo IDLE, DISABLED
|
|
820
850
|
*/
|
|
821
851
|
DbxActionState["REJECTED"] = "rejected";
|
|
822
852
|
/**
|
|
823
853
|
* The action resolved without issue.
|
|
854
|
+
*
|
|
855
|
+
* @dbxActionStateTransitionsFrom WORKING
|
|
856
|
+
* @dbxActionStateTransitionsTo IDLE, DISABLED
|
|
824
857
|
*/
|
|
825
858
|
DbxActionState["RESOLVED"] = "resolved";
|
|
826
859
|
})(DbxActionState || (DbxActionState = {}));
|
|
@@ -1010,7 +1043,7 @@ function loadingStateForActionContextState(state) {
|
|
|
1010
1043
|
case DbxActionState.TRIGGERED:
|
|
1011
1044
|
case DbxActionState.VALUE_READY:
|
|
1012
1045
|
case DbxActionState.WORKING:
|
|
1013
|
-
loadingState = beginLoading(state.workProgress
|
|
1046
|
+
loadingState = beginLoading(state.workProgress == null ? undefined : { loadingProgress: state.workProgress });
|
|
1014
1047
|
break;
|
|
1015
1048
|
}
|
|
1016
1049
|
return loadingState;
|
|
@@ -1051,6 +1084,13 @@ const ACTION_CONTEXT_STORE_LOCKSET_DESTROY_DELAY_TIME = 2000;
|
|
|
1051
1084
|
* IDLE/DISABLED -> TRIGGERED -> VALUE_READY -> WORKING -> RESOLVED | REJECTED
|
|
1052
1085
|
* ```
|
|
1053
1086
|
*
|
|
1087
|
+
* @dbxAction
|
|
1088
|
+
* @dbxActionSlug action-context-store
|
|
1089
|
+
* @dbxActionRole store
|
|
1090
|
+
* @dbxActionDisabledKey dbx_action_disabled
|
|
1091
|
+
* @dbxActionDisabledKey dbx_action_enforce_modified
|
|
1092
|
+
* @dbxActionSkillRefs dbx__ref__dbx-component-patterns
|
|
1093
|
+
*
|
|
1054
1094
|
* @typeParam T - The input value type provided after triggering.
|
|
1055
1095
|
* @typeParam O - The output result type produced on resolution.
|
|
1056
1096
|
*
|
|
@@ -1504,6 +1544,11 @@ function provideSecondaryActionStoreSource(sourceType) {
|
|
|
1504
1544
|
* On destruction, the directive coordinates cleanup through a {@link LockSet} to ensure
|
|
1505
1545
|
* in-flight operations complete before the store is torn down.
|
|
1506
1546
|
*
|
|
1547
|
+
* @dbxAction
|
|
1548
|
+
* @dbxActionSlug action
|
|
1549
|
+
* @dbxActionStateInteraction IDLE
|
|
1550
|
+
* @dbxActionProducesContext
|
|
1551
|
+
*
|
|
1507
1552
|
* @example
|
|
1508
1553
|
* ```html
|
|
1509
1554
|
* <div dbxAction>
|
|
@@ -1558,6 +1603,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1558
1603
|
* This is useful when an action context is created programmatically (e.g., via
|
|
1559
1604
|
* {@link DbxActionContextMachine}) and needs to be shared with template-based directives.
|
|
1560
1605
|
*
|
|
1606
|
+
* @dbxAction
|
|
1607
|
+
* @dbxActionSlug source
|
|
1608
|
+
*
|
|
1561
1609
|
* @example
|
|
1562
1610
|
* ```html
|
|
1563
1611
|
* <!-- Forward a programmatic action source to template directives -->
|
|
@@ -1592,6 +1640,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1592
1640
|
* Subscribes to the parent action's full state stream and prints each state snapshot
|
|
1593
1641
|
* via `console.log`. Useful during development to inspect the action lifecycle transitions.
|
|
1594
1642
|
*
|
|
1643
|
+
* @dbxAction
|
|
1644
|
+
* @dbxActionSlug logger
|
|
1645
|
+
* @dbxActionStateInteraction IDLE, TRIGGERED, VALUE_READY, WORKING, RESOLVED, REJECTED, DISABLED
|
|
1646
|
+
* @dbxActionConsumesContext
|
|
1647
|
+
*
|
|
1595
1648
|
* @example
|
|
1596
1649
|
* ```html
|
|
1597
1650
|
* <div dbxAction>
|
|
@@ -1697,6 +1750,9 @@ function actionContextStoreSourceMap() {
|
|
|
1697
1750
|
*
|
|
1698
1751
|
* The map is exported as `actionMap` for template reference access.
|
|
1699
1752
|
*
|
|
1753
|
+
* @dbxAction
|
|
1754
|
+
* @dbxActionSlug context-map
|
|
1755
|
+
*
|
|
1700
1756
|
* @example
|
|
1701
1757
|
* ```html
|
|
1702
1758
|
* <div dbxActionContextMap>
|
|
@@ -1939,6 +1995,11 @@ const APP_ACTION_DISABLED_DIRECTIVE_KEY = 'dbx_action_disabled';
|
|
|
1939
1995
|
*
|
|
1940
1996
|
* The disable key is automatically cleaned up on directive destruction.
|
|
1941
1997
|
*
|
|
1998
|
+
* @dbxAction
|
|
1999
|
+
* @dbxActionSlug disabled
|
|
2000
|
+
* @dbxActionStateInteraction DISABLED
|
|
2001
|
+
* @dbxActionConsumesContext
|
|
2002
|
+
*
|
|
1942
2003
|
* @example
|
|
1943
2004
|
* ```html
|
|
1944
2005
|
* <div dbxAction>
|
|
@@ -1989,6 +2050,11 @@ const APP_ACTION_DISABLED_ON_SUCCESS_DIRECTIVE_KEY = 'dbx_action_disabled_on_suc
|
|
|
1989
2050
|
*
|
|
1990
2051
|
* The disable key is automatically cleaned up on directive destruction.
|
|
1991
2052
|
*
|
|
2053
|
+
* @dbxAction
|
|
2054
|
+
* @dbxActionSlug disabled-on-success
|
|
2055
|
+
* @dbxActionStateInteraction RESOLVED, DISABLED
|
|
2056
|
+
* @dbxActionConsumesContext
|
|
2057
|
+
*
|
|
1992
2058
|
* @example
|
|
1993
2059
|
* ```html
|
|
1994
2060
|
* <div dbxAction>
|
|
@@ -2134,6 +2200,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2134
2200
|
* called with the value and a work context. The work function is responsible for performing
|
|
2135
2201
|
* the async operation and signaling success or failure through the context.
|
|
2136
2202
|
*
|
|
2203
|
+
* @dbxAction
|
|
2204
|
+
* @dbxActionSlug handler
|
|
2205
|
+
* @dbxActionStateInteraction VALUE_READY, WORKING, RESOLVED, REJECTED
|
|
2206
|
+
* @dbxActionConsumesContext
|
|
2207
|
+
* @dbxActionSkillRefs dbx__ref__dbx-component-patterns, dbx__guide__action-analytics
|
|
2208
|
+
*
|
|
2137
2209
|
* @example
|
|
2138
2210
|
* ```html
|
|
2139
2211
|
* <div dbxAction>
|
|
@@ -2169,6 +2241,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2169
2241
|
* The provided value (or the result of calling the getter/factory) is used directly as the
|
|
2170
2242
|
* action's result, with the working/success lifecycle handled automatically.
|
|
2171
2243
|
*
|
|
2244
|
+
* @dbxAction
|
|
2245
|
+
* @dbxActionSlug handler-value
|
|
2246
|
+
* @dbxActionStateInteraction VALUE_READY, WORKING, RESOLVED
|
|
2247
|
+
* @dbxActionConsumesContext
|
|
2248
|
+
*
|
|
2172
2249
|
* @example
|
|
2173
2250
|
* ```html
|
|
2174
2251
|
* <div dbxAction>
|
|
@@ -2438,6 +2515,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2438
2515
|
* This is useful for performing side effects like logging, showing error toasts, or
|
|
2439
2516
|
* handling specific error conditions programmatically.
|
|
2440
2517
|
*
|
|
2518
|
+
* @dbxAction
|
|
2519
|
+
* @dbxActionSlug error-handler
|
|
2520
|
+
* @dbxActionStateInteraction REJECTED
|
|
2521
|
+
* @dbxActionConsumesContext
|
|
2522
|
+
*
|
|
2441
2523
|
* @example
|
|
2442
2524
|
* ```html
|
|
2443
2525
|
* <div dbxAction>
|
|
@@ -2486,6 +2568,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2486
2568
|
* The input filters out null/undefined values, waiting until a non-null value is provided.
|
|
2487
2569
|
* If you need to pass null/undefined as valid action values, use {@link DbxActionValueTriggerDirective} instead.
|
|
2488
2570
|
*
|
|
2571
|
+
* @dbxAction
|
|
2572
|
+
* @dbxActionSlug value
|
|
2573
|
+
* @dbxActionStateInteraction TRIGGERED, VALUE_READY
|
|
2574
|
+
* @dbxActionConsumesContext
|
|
2575
|
+
*
|
|
2489
2576
|
* @example
|
|
2490
2577
|
* ```html
|
|
2491
2578
|
* <div dbxAction>
|
|
@@ -2601,6 +2688,11 @@ const APP_ACTION_ENFORCE_MODIFIED_DIRECTIVE_KEY = 'dbx_action_enforce_modified';
|
|
|
2601
2688
|
*
|
|
2602
2689
|
* The disable key is automatically cleaned up on directive destruction.
|
|
2603
2690
|
*
|
|
2691
|
+
* @dbxAction
|
|
2692
|
+
* @dbxActionSlug enforce-modified
|
|
2693
|
+
* @dbxActionStateInteraction IDLE, DISABLED
|
|
2694
|
+
* @dbxActionConsumesContext
|
|
2695
|
+
*
|
|
2604
2696
|
* @example
|
|
2605
2697
|
* ```html
|
|
2606
2698
|
* <div dbxAction>
|
|
@@ -2636,6 +2728,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2636
2728
|
}]
|
|
2637
2729
|
}], ctorParameters: () => [], propDecorators: { enabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "dbxActionEnforceModified", required: false }] }] } });
|
|
2638
2730
|
|
|
2731
|
+
/**
|
|
2732
|
+
* Structural directive that conditionally renders its content when the action is marked as modified.
|
|
2733
|
+
*
|
|
2734
|
+
* @example
|
|
2735
|
+
* ```html
|
|
2736
|
+
* <div dbxAction>
|
|
2737
|
+
* <div *dbxActionIsModified>You have unsaved changes.</div>
|
|
2738
|
+
* </div>
|
|
2739
|
+
* ```
|
|
2740
|
+
*
|
|
2741
|
+
* @see {@link DbxActionEnforceModifiedDirective} for disabling the action when not modified.
|
|
2742
|
+
* @see {@link DbxActionAutoModifyDirective} for always keeping the action modified.
|
|
2743
|
+
*/
|
|
2744
|
+
class DbxActionIsModifiedDirective extends AbstractIfDirective {
|
|
2745
|
+
_store = inject(DbxActionContextStoreSourceInstance);
|
|
2746
|
+
show$ = this._store.isModified$.pipe(shareReplay(1));
|
|
2747
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: DbxActionIsModifiedDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2748
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.4", type: DbxActionIsModifiedDirective, isStandalone: true, selector: "[dbxActionIsModified]", usesInheritance: true, ngImport: i0 });
|
|
2749
|
+
}
|
|
2750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: DbxActionIsModifiedDirective, decorators: [{
|
|
2751
|
+
type: Directive,
|
|
2752
|
+
args: [{
|
|
2753
|
+
selector: '[dbxActionIsModified]',
|
|
2754
|
+
standalone: true
|
|
2755
|
+
}]
|
|
2756
|
+
}] });
|
|
2757
|
+
|
|
2639
2758
|
/**
|
|
2640
2759
|
* Utility class that handles the trigger-to-value-ready phase of the action lifecycle.
|
|
2641
2760
|
*
|
|
@@ -2762,6 +2881,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2762
2881
|
* Supports optional `isModified` and `isEqual` functions to control whether the retrieved
|
|
2763
2882
|
* value should proceed to `readyValue` or be rejected.
|
|
2764
2883
|
*
|
|
2884
|
+
* @dbxAction
|
|
2885
|
+
* @dbxActionSlug value-getter
|
|
2886
|
+
* @dbxActionStateInteraction TRIGGERED, VALUE_READY
|
|
2887
|
+
* @dbxActionConsumesContext
|
|
2888
|
+
*
|
|
2765
2889
|
* @example
|
|
2766
2890
|
* ```html
|
|
2767
2891
|
* <div dbxAction>
|
|
@@ -5347,14 +5471,12 @@ function redirectForIdentifierParamHook(input) {
|
|
|
5347
5471
|
}
|
|
5348
5472
|
else if (defaultAllowedIdValue !== transitionTargetId) {
|
|
5349
5473
|
redirectToId = canViewUser(transitionTargetId, authService, injector).pipe(map((x) => {
|
|
5350
|
-
|
|
5351
|
-
return result;
|
|
5474
|
+
return x == null || typeof x === 'boolean' ? (x ? transitionTargetId : defaultAllowedIdValue) : x;
|
|
5352
5475
|
}));
|
|
5353
5476
|
}
|
|
5354
5477
|
if (redirectToId != null) {
|
|
5355
5478
|
result = redirectToId.pipe(first(), map((targetId) => {
|
|
5356
|
-
|
|
5357
|
-
return result;
|
|
5479
|
+
return targetId !== transitionTargetId ? $state.target(transition.targetState().state(), { ...params, [idParam]: targetId }, { location: true }) : true;
|
|
5358
5480
|
}));
|
|
5359
5481
|
}
|
|
5360
5482
|
return result;
|
|
@@ -5920,8 +6042,7 @@ function isSegueRefActiveOnTransitionSuccess(config) {
|
|
|
5920
6042
|
function isSegueRefActive(config) {
|
|
5921
6043
|
const { defaultIfNull = false } = config;
|
|
5922
6044
|
return switchMap((segueRef) => {
|
|
5923
|
-
|
|
5924
|
-
return result;
|
|
6045
|
+
return segueRef ? isSegueRefActiveOnTransitionSuccess({ ...config, segueRef }) : of(defaultIfNull);
|
|
5925
6046
|
});
|
|
5926
6047
|
}
|
|
5927
6048
|
|
|
@@ -6002,7 +6123,7 @@ class DbxRouteParamDefaultRedirectInstance {
|
|
|
6002
6123
|
init() {
|
|
6003
6124
|
this._sub.subscription = this._enabled
|
|
6004
6125
|
.pipe(switchMap((enabled) => {
|
|
6005
|
-
|
|
6126
|
+
return enabled
|
|
6006
6127
|
? this.instance.paramValue$.pipe(switchMapToDefault(this.instance.defaultValue$, (value) => {
|
|
6007
6128
|
return this._useDefaultFilter.pipe(switchMap((fn) => DEFAULT_REDIRECT_INSTANCE_FORWARD_FACTORY(fn)(value)));
|
|
6008
6129
|
}), filterMaybe(), // do not redirect on MaybeNot values
|
|
@@ -6010,7 +6131,6 @@ class DbxRouteParamDefaultRedirectInstance {
|
|
|
6010
6131
|
return this.redirectWithDefaultValue(defaultValue);
|
|
6011
6132
|
}))
|
|
6012
6133
|
: EMPTY;
|
|
6013
|
-
return result;
|
|
6014
6134
|
}))
|
|
6015
6135
|
.subscribe();
|
|
6016
6136
|
}
|
|
@@ -6421,6 +6541,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6421
6541
|
* Useful for normalizing values that may be plain values, getter functions, or Observables
|
|
6422
6542
|
* into a consistent Observable stream for use with the `async` pipe.
|
|
6423
6543
|
*
|
|
6544
|
+
* @dbxPipe
|
|
6545
|
+
* @dbxPipeSlug as-observable
|
|
6546
|
+
* @dbxPipeCategory async
|
|
6424
6547
|
* @example
|
|
6425
6548
|
* ```html
|
|
6426
6549
|
* <span>{{ valueOrGetter | asObservable | async }}</span>
|
|
@@ -6446,6 +6569,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6446
6569
|
*
|
|
6447
6570
|
* Displays only the date portion (no times). Returns a fallback string when the input is `null` or `undefined`.
|
|
6448
6571
|
*
|
|
6572
|
+
* @dbxPipe
|
|
6573
|
+
* @dbxPipeSlug date-day-range
|
|
6574
|
+
* @dbxPipeCategory date
|
|
6575
|
+
* @dbxPipeRelated date-time-range, date-day-time-range
|
|
6449
6576
|
* @example
|
|
6450
6577
|
* ```html
|
|
6451
6578
|
* <span>{{ dateRange | dateDayRange }}</span>
|
|
@@ -6477,6 +6604,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6477
6604
|
* Returns `undefined` if the input is `null`, `undefined`, or results in an invalid date.
|
|
6478
6605
|
* Also provides a static `toJsDate()` method used by other pipes in this package.
|
|
6479
6606
|
*
|
|
6607
|
+
* @dbxPipe
|
|
6608
|
+
* @dbxPipeSlug to-js-date
|
|
6609
|
+
* @dbxPipeCategory date
|
|
6610
|
+
* @dbxPipeRelated date-distance, date-format-distance
|
|
6480
6611
|
* @example
|
|
6481
6612
|
* ```html
|
|
6482
6613
|
* <span>{{ '2024-01-05T12:00:00Z' | toJsDate | date:'short' }}</span>
|
|
@@ -6516,6 +6647,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6516
6647
|
*
|
|
6517
6648
|
* Accepts an optional comparison date (defaults to now) and a fallback string for `null`/`undefined` input.
|
|
6518
6649
|
*
|
|
6650
|
+
* @dbxPipe
|
|
6651
|
+
* @dbxPipeSlug date-distance
|
|
6652
|
+
* @dbxPipeCategory date
|
|
6653
|
+
* @dbxPipeRelated date-range-distance, date-format-distance, time-distance
|
|
6519
6654
|
* @example
|
|
6520
6655
|
* ```html
|
|
6521
6656
|
* <span>{{ someDate | dateDistance }}</span>
|
|
@@ -6558,6 +6693,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6558
6693
|
*
|
|
6559
6694
|
* Returns `undefined` if the input is falsy or not a valid date.
|
|
6560
6695
|
*
|
|
6696
|
+
* @dbxPipe
|
|
6697
|
+
* @dbxPipeSlug date-format-distance
|
|
6698
|
+
* @dbxPipeCategory date
|
|
6699
|
+
* @dbxPipeRelated date-distance, date-format-from-to
|
|
6561
6700
|
* @example
|
|
6562
6701
|
* ```html
|
|
6563
6702
|
* <span>{{ someDate | dateFormatDistance:'MMM d, y' }}</span>
|
|
@@ -6601,6 +6740,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6601
6740
|
* The start date is formatted using the Angular locale-aware {@link formatDate}, and the end time
|
|
6602
6741
|
* is computed by adding the given minutes and formatted as a time-only string.
|
|
6603
6742
|
*
|
|
6743
|
+
* @dbxPipe
|
|
6744
|
+
* @dbxPipeSlug date-format-from-to
|
|
6745
|
+
* @dbxPipeCategory date
|
|
6746
|
+
* @dbxPipeRelated date-time-range, date-format-distance
|
|
6604
6747
|
* @example
|
|
6605
6748
|
* ```html
|
|
6606
6749
|
* <span>{{ eventStart | dateFormatFromTo:'MMM d, h:mm a':90 }}</span>
|
|
@@ -6639,6 +6782,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6639
6782
|
*
|
|
6640
6783
|
* Includes both the date and time portions. Returns a fallback string when the input is `null` or `undefined`.
|
|
6641
6784
|
*
|
|
6785
|
+
* @dbxPipe
|
|
6786
|
+
* @dbxPipeSlug date-day-time-range
|
|
6787
|
+
* @dbxPipeCategory date
|
|
6788
|
+
* @dbxPipeRelated date-time-range, date-day-range
|
|
6642
6789
|
* @example
|
|
6643
6790
|
* ```html
|
|
6644
6791
|
* <span>{{ dateRange | dateDayTimeRange }}</span>
|
|
@@ -6669,6 +6816,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6669
6816
|
*
|
|
6670
6817
|
* Displays the date and time of both the start and end. Returns a fallback string when the input is `null` or `undefined`.
|
|
6671
6818
|
*
|
|
6819
|
+
* @dbxPipe
|
|
6820
|
+
* @dbxPipeSlug date-time-range
|
|
6821
|
+
* @dbxPipeCategory date
|
|
6822
|
+
* @dbxPipeRelated date-time-range-only, date-day-range, date-day-time-range
|
|
6672
6823
|
* @example
|
|
6673
6824
|
* ```html
|
|
6674
6825
|
* <span>{{ dateRange | dateTimeRange }}</span>
|
|
@@ -6700,6 +6851,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6700
6851
|
* This is an impure pipe that recalculates on every change detection cycle to keep the distance up to date.
|
|
6701
6852
|
* Returns a fallback string when the input is `null` or `undefined`.
|
|
6702
6853
|
*
|
|
6854
|
+
* @dbxPipe
|
|
6855
|
+
* @dbxPipeSlug date-range-distance
|
|
6856
|
+
* @dbxPipeCategory date
|
|
6857
|
+
* @dbxPipeRelated date-distance
|
|
6703
6858
|
* @example
|
|
6704
6859
|
* ```html
|
|
6705
6860
|
* <span>{{ someDate | dateRangeDistance }}</span>
|
|
@@ -6730,6 +6885,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6730
6885
|
*
|
|
6731
6886
|
* Displays only the time portion (no date). Returns a fallback string when the input is `null` or `undefined`.
|
|
6732
6887
|
*
|
|
6888
|
+
* @dbxPipe
|
|
6889
|
+
* @dbxPipeSlug date-time-range-only
|
|
6890
|
+
* @dbxPipeCategory date
|
|
6891
|
+
* @dbxPipeRelated date-time-range
|
|
6733
6892
|
* @example
|
|
6734
6893
|
* ```html
|
|
6735
6894
|
* <span>{{ dateRange | dateTimeRangeOnly }}</span>
|
|
@@ -6762,6 +6921,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6762
6921
|
* local time in a target timezone and need to convert it back to the system timezone.
|
|
6763
6922
|
* Returns `undefined` if either the input date or timezone is falsy.
|
|
6764
6923
|
*
|
|
6924
|
+
* @dbxPipe
|
|
6925
|
+
* @dbxPipeSlug target-date-to-system-date
|
|
6926
|
+
* @dbxPipeCategory date
|
|
6927
|
+
* @dbxPipeRelated system-date-to-target-date, timezone-abbreviation
|
|
6765
6928
|
* @example
|
|
6766
6929
|
* ```html
|
|
6767
6930
|
* <span>{{ targetDate | targetDateToSystemDate:'America/New_York' | date:'short' }}</span>
|
|
@@ -6790,6 +6953,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6790
6953
|
* Accepts an optional {@link FormatDateRangeDistanceFunctionConfig} to customize the output format.
|
|
6791
6954
|
* Returns a fallback string when the input is `null` or `undefined`.
|
|
6792
6955
|
*
|
|
6956
|
+
* @dbxPipe
|
|
6957
|
+
* @dbxPipeSlug date-time-range-only-distance
|
|
6958
|
+
* @dbxPipeCategory date
|
|
6959
|
+
* @dbxPipeRelated date-time-range, date-range-distance
|
|
6793
6960
|
* @example
|
|
6794
6961
|
* ```html
|
|
6795
6962
|
* <span>{{ dateRange | dateTimeRangeOnlyDistance }}</span>
|
|
@@ -6825,6 +6992,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6825
6992
|
* Defaults to the current date if no reference date is provided.
|
|
6826
6993
|
* Returns `undefined` if the timezone is falsy.
|
|
6827
6994
|
*
|
|
6995
|
+
* @dbxPipe
|
|
6996
|
+
* @dbxPipeSlug timezone-abbreviation
|
|
6997
|
+
* @dbxPipeCategory date
|
|
6998
|
+
* @dbxPipeRelated system-date-to-target-date, target-date-to-system-date
|
|
6828
6999
|
* @example
|
|
6829
7000
|
* ```html
|
|
6830
7001
|
* <span>{{ 'America/New_York' | timezoneAbbreviation }}</span>
|
|
@@ -6856,6 +7027,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6856
7027
|
* This is useful when you have a date in the system's timezone and need to display it as if it were in the target timezone.
|
|
6857
7028
|
* Returns `undefined` if either the input date or timezone is falsy.
|
|
6858
7029
|
*
|
|
7030
|
+
* @dbxPipe
|
|
7031
|
+
* @dbxPipeSlug system-date-to-target-date
|
|
7032
|
+
* @dbxPipeCategory date
|
|
7033
|
+
* @dbxPipeRelated target-date-to-system-date, timezone-abbreviation
|
|
6859
7034
|
* @example
|
|
6860
7035
|
* ```html
|
|
6861
7036
|
* <span>{{ systemDate | systemDateToTargetDate:'America/New_York' | date:'short' }}</span>
|
|
@@ -6887,6 +7062,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6887
7062
|
*
|
|
6888
7063
|
* A `~` prefix is added when the value is rounded up. Returns `undefined` for `null` or non-numeric input.
|
|
6889
7064
|
*
|
|
7065
|
+
* @dbxPipe
|
|
7066
|
+
* @dbxPipeSlug minutes-string
|
|
7067
|
+
* @dbxPipeCategory date
|
|
7068
|
+
* @dbxPipeRelated to-minutes
|
|
6890
7069
|
* @example
|
|
6891
7070
|
* ```html
|
|
6892
7071
|
* <span>{{ 90 | minutesString }}</span>
|
|
@@ -6939,6 +7118,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6939
7118
|
* Otherwise, returns a human-readable distance string with suffix (e.g., "in 3 hours").
|
|
6940
7119
|
* Returns the `unavailable` string when the input is falsy.
|
|
6941
7120
|
*
|
|
7121
|
+
* @dbxPipe
|
|
7122
|
+
* @dbxPipeSlug time-countdown-distance
|
|
7123
|
+
* @dbxPipeCategory date
|
|
7124
|
+
* @dbxPipeRelated time-distance
|
|
6942
7125
|
* @example
|
|
6943
7126
|
* ```html
|
|
6944
7127
|
* <span>{{ futureDate | timeCountdownDistance }}</span>
|
|
@@ -6985,6 +7168,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6985
7168
|
* Uses date-fns {@link formatDistance} to produce output like "3 hours ago" or "in 2 days".
|
|
6986
7169
|
* Returns the `unavailable` string when the input is falsy.
|
|
6987
7170
|
*
|
|
7171
|
+
* @dbxPipe
|
|
7172
|
+
* @dbxPipeSlug time-distance
|
|
7173
|
+
* @dbxPipeCategory date
|
|
7174
|
+
* @dbxPipeRelated date-distance, time-countdown-distance
|
|
6988
7175
|
* @example
|
|
6989
7176
|
* ```html
|
|
6990
7177
|
* <span>{{ someDate | timeDistance }}</span>
|
|
@@ -7028,6 +7215,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7028
7215
|
*
|
|
7029
7216
|
* Returns the original value (0 or falsy) if the input is falsy.
|
|
7030
7217
|
*
|
|
7218
|
+
* @dbxPipe
|
|
7219
|
+
* @dbxPipeSlug to-minutes
|
|
7220
|
+
* @dbxPipeCategory date
|
|
7221
|
+
* @dbxPipeRelated minutes-string
|
|
7031
7222
|
* @example
|
|
7032
7223
|
* ```html
|
|
7033
7224
|
* <span>{{ 180000 | toMinutes }}</span>
|
|
@@ -7062,6 +7253,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7062
7253
|
*
|
|
7063
7254
|
* Returns `undefined` for falsy input. If serialization fails, returns `'ERROR'` and logs the error to the console.
|
|
7064
7255
|
*
|
|
7256
|
+
* @dbxPipe
|
|
7257
|
+
* @dbxPipeSlug prettyjson
|
|
7258
|
+
* @dbxPipeCategory misc
|
|
7065
7259
|
* @example
|
|
7066
7260
|
* ```html
|
|
7067
7261
|
* <pre>{{ myObject | prettyjson }}</pre>
|
|
@@ -7070,6 +7264,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7070
7264
|
* <pre>{{ myObject | prettyjson:4 }}</pre>
|
|
7071
7265
|
* <!-- Output: formatted JSON with 4-space indentation -->
|
|
7072
7266
|
* ```
|
|
7267
|
+
* @param spacing Indent spaces; defaults to `2`.
|
|
7073
7268
|
*/
|
|
7074
7269
|
class PrettyJsonPipe {
|
|
7075
7270
|
static toPrettyJson(input, spacing = 2) {
|
|
@@ -7104,6 +7299,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7104
7299
|
*
|
|
7105
7300
|
* Returns the original value if the input is `null` or `undefined`.
|
|
7106
7301
|
*
|
|
7302
|
+
* @dbxPipe
|
|
7303
|
+
* @dbxPipeSlug cut-text
|
|
7304
|
+
* @dbxPipeCategory value
|
|
7305
|
+
* @dbxPipeSkillRefs dbx-value-pipes
|
|
7107
7306
|
* @example
|
|
7108
7307
|
* ```html
|
|
7109
7308
|
* <span>{{ 'Hello World' | cutText:5 }}</span>
|
|
@@ -7112,6 +7311,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7112
7311
|
* <span>{{ longText | cutText:20:'--' }}</span>
|
|
7113
7312
|
* <!-- Output: "Some long text here--" -->
|
|
7114
7313
|
* ```
|
|
7314
|
+
* @param maxLength Maximum allowed length before truncation.
|
|
7315
|
+
* @param endText Suffix appended when truncation occurs.
|
|
7115
7316
|
*/
|
|
7116
7317
|
class CutTextPipe {
|
|
7117
7318
|
transform(input, maxLength, endText) {
|
|
@@ -7136,11 +7337,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7136
7337
|
* for getter functions whose return value may change over time.
|
|
7137
7338
|
* Use {@link GetValueOncePipe} (`getValueOnce`) for a pure alternative when the value is static.
|
|
7138
7339
|
*
|
|
7340
|
+
* @dbxPipe
|
|
7341
|
+
* @dbxPipeSlug get-value
|
|
7342
|
+
* @dbxPipeCategory value
|
|
7343
|
+
* @dbxPipeRelated get-value-once
|
|
7344
|
+
* @dbxPipeSkillRefs dbx-value-pipes
|
|
7139
7345
|
* @example
|
|
7140
7346
|
* ```html
|
|
7141
7347
|
* <span>{{ myGetterOrValue | getValue }}</span>
|
|
7142
7348
|
* <span>{{ myGetterFn | getValue:someArg }}</span>
|
|
7143
7349
|
* ```
|
|
7350
|
+
* @param args Optional argument forwarded to the getter function.
|
|
7144
7351
|
*/
|
|
7145
7352
|
class GetValuePipe {
|
|
7146
7353
|
transform(input, args) {
|
|
@@ -7163,10 +7370,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7163
7370
|
* This is a pure pipe that only re-evaluates when the input reference changes.
|
|
7164
7371
|
* Use {@link GetValuePipe} (`getValue`) if the getter function's return value may change between cycles.
|
|
7165
7372
|
*
|
|
7373
|
+
* @dbxPipe
|
|
7374
|
+
* @dbxPipeSlug get-value-once
|
|
7375
|
+
* @dbxPipeCategory value
|
|
7376
|
+
* @dbxPipeRelated get-value
|
|
7377
|
+
* @dbxPipeSkillRefs dbx-value-pipes
|
|
7166
7378
|
* @example
|
|
7167
7379
|
* ```html
|
|
7168
7380
|
* <span>{{ myGetterOrValue | getValueOnce }}</span>
|
|
7169
7381
|
* ```
|
|
7382
|
+
* @param args Optional argument forwarded to the getter function.
|
|
7170
7383
|
*/
|
|
7171
7384
|
class GetValueOncePipe {
|
|
7172
7385
|
transform(input, args) {
|
|
@@ -7189,6 +7402,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7189
7402
|
*
|
|
7190
7403
|
* Optionally accepts a default string to display when the input is `null` or `undefined`.
|
|
7191
7404
|
*
|
|
7405
|
+
* @dbxPipe
|
|
7406
|
+
* @dbxPipeSlug dollar-amount
|
|
7407
|
+
* @dbxPipeCategory value
|
|
7408
|
+
* @dbxPipeSkillRefs dbx-value-pipes
|
|
7192
7409
|
* @example
|
|
7193
7410
|
* ```html
|
|
7194
7411
|
* <span>{{ 19.5 | dollarAmount }}</span>
|
|
@@ -7197,6 +7414,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7197
7414
|
* <span>{{ nullValue | dollarAmount:'N/A' }}</span>
|
|
7198
7415
|
* <!-- Output: "N/A" -->
|
|
7199
7416
|
* ```
|
|
7417
|
+
* @param defaultIfNull String to display when the input is `null` or `undefined`. Defaults to formatting `null` through `dollarAmountString`.
|
|
7200
7418
|
*/
|
|
7201
7419
|
class DollarAmountPipe {
|
|
7202
7420
|
transform(input, defaultIfNull) {
|
|
@@ -7370,10 +7588,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7370
7588
|
}] });
|
|
7371
7589
|
|
|
7372
7590
|
/**
|
|
7373
|
-
* Connects the host element's {@link FilterSource} to an ancestor {@link FilterSourceConnector} on
|
|
7591
|
+
* Connects the host element's {@link FilterSource} to an ancestor {@link FilterSourceConnector} on init. Place on an element whose own directive contributes a `FilterSource` (via `host: true`) so it auto-wires to the parent connector.
|
|
7374
7592
|
*
|
|
7375
|
-
*
|
|
7376
|
-
*
|
|
7593
|
+
* @dbxFilter
|
|
7594
|
+
* @dbxFilterSlug connect-source
|
|
7595
|
+
* @dbxFilterRelated source, source-connector
|
|
7596
|
+
* @dbxFilterSkillRefs dbx__ref__dbx-component-patterns
|
|
7377
7597
|
*
|
|
7378
7598
|
* @example
|
|
7379
7599
|
* ```html
|
|
@@ -7400,14 +7620,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7400
7620
|
}] });
|
|
7401
7621
|
|
|
7402
7622
|
/**
|
|
7403
|
-
*
|
|
7623
|
+
* Acts as both {@link FilterSource} and {@link FilterSourceConnector} — bridges a filter from one part of the template to another. Pair with `[dbxFilterConnectSource]` on the inner element that owns the source.
|
|
7404
7624
|
*
|
|
7405
|
-
*
|
|
7625
|
+
* @dbxFilter
|
|
7626
|
+
* @dbxFilterSlug source-connector
|
|
7627
|
+
* @dbxFilterRelated source, connect-source
|
|
7628
|
+
* @dbxFilterSkillRefs dbx__ref__dbx-component-patterns
|
|
7406
7629
|
*
|
|
7407
7630
|
* @example
|
|
7408
7631
|
* ```html
|
|
7409
7632
|
* <div dbxFilterSourceConnector>
|
|
7410
|
-
* <my-
|
|
7633
|
+
* <my-filter-form dbxFilterSource dbxFilterConnectSource></my-filter-form>
|
|
7634
|
+
* <my-list></my-list>
|
|
7411
7635
|
* </div>
|
|
7412
7636
|
* ```
|
|
7413
7637
|
*/
|
|
@@ -7467,18 +7691,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7467
7691
|
type: Directive
|
|
7468
7692
|
}] });
|
|
7469
7693
|
/**
|
|
7470
|
-
*
|
|
7694
|
+
* Provides a {@link FilterSource} for a keyed entry in an ancestor {@link FilterMap}. Children can inject the source as if it were the only filter on the page; the map dispatches by key.
|
|
7695
|
+
*
|
|
7696
|
+
* @dbxFilter
|
|
7697
|
+
* @dbxFilterSlug map-source
|
|
7698
|
+
* @dbxFilterRelated map, map-source-connector
|
|
7699
|
+
* @dbxFilterSkillRefs dbx__ref__dbx-component-patterns
|
|
7471
7700
|
*
|
|
7472
7701
|
* @example
|
|
7473
7702
|
* ```html
|
|
7474
7703
|
* <div dbxFilterMap>
|
|
7475
|
-
* <div [dbxFilterMapSource]="'
|
|
7704
|
+
* <div [dbxFilterMapSource]="'profileList'">
|
|
7476
7705
|
* <my-filtered-list></my-filtered-list>
|
|
7477
7706
|
* </div>
|
|
7478
7707
|
* </div>
|
|
7479
7708
|
* ```
|
|
7480
7709
|
*/
|
|
7481
7710
|
class DbxFilterMapSourceDirective extends AbstractDbxFilterMapSourceDirective {
|
|
7711
|
+
/**
|
|
7712
|
+
* The map key this source binds to.
|
|
7713
|
+
*/
|
|
7482
7714
|
dbxFilterMapSource = input(...(ngDevMode ? [undefined, { debugName: "dbxFilterMapSource" }] : /* istanbul ignore next */ []));
|
|
7483
7715
|
_dbxFilterMapSourceEffect = effect(() => this.setFilterMapKey(this.dbxFilterMapSource()), ...(ngDevMode ? [{ debugName: "_dbxFilterMapSourceEffect" }] : /* istanbul ignore next */ []));
|
|
7484
7716
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: DbxFilterMapSourceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -7495,20 +7727,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7495
7727
|
}], propDecorators: { dbxFilterMapSource: [{ type: i0.Input, args: [{ isSignal: true, alias: "dbxFilterMapSource", required: false }] }] } });
|
|
7496
7728
|
|
|
7497
7729
|
/**
|
|
7498
|
-
*
|
|
7730
|
+
* Both {@link FilterSource} and {@link FilterSourceConnector} for a keyed entry in an ancestor {@link FilterMap}. Connects an external filter source to one map slot and re-emits that slot's filter.
|
|
7499
7731
|
*
|
|
7500
|
-
*
|
|
7732
|
+
* @dbxFilter
|
|
7733
|
+
* @dbxFilterSlug map-source-connector
|
|
7734
|
+
* @dbxFilterRelated map, map-source
|
|
7735
|
+
* @dbxFilterSkillRefs dbx__ref__dbx-component-patterns
|
|
7501
7736
|
*
|
|
7502
7737
|
* @example
|
|
7503
7738
|
* ```html
|
|
7504
7739
|
* <div dbxFilterMap>
|
|
7505
|
-
* <div [dbxFilterMapSourceConnector]="'
|
|
7506
|
-
* <my-list
|
|
7740
|
+
* <div [dbxFilterMapSourceConnector]="'profileList'">
|
|
7741
|
+
* <my-list></my-list>
|
|
7507
7742
|
* </div>
|
|
7508
7743
|
* </div>
|
|
7509
7744
|
* ```
|
|
7510
7745
|
*/
|
|
7511
7746
|
class DbxFilterMapSourceConnectorDirective extends AbstractDbxFilterMapSourceDirective {
|
|
7747
|
+
/**
|
|
7748
|
+
* The map key this connector binds to.
|
|
7749
|
+
*/
|
|
7512
7750
|
dbxFilterMapSourceConnector = input(...(ngDevMode ? [undefined, { debugName: "dbxFilterMapSourceConnector" }] : /* istanbul ignore next */ []));
|
|
7513
7751
|
_dbxFilterMapSourceConnectorEffect = effect(() => this.setFilterMapKey(this.dbxFilterMapSourceConnector()), ...(ngDevMode ? [{ debugName: "_dbxFilterMapSourceConnectorEffect" }] : /* istanbul ignore next */ []));
|
|
7514
7752
|
// MARK: FilterSourceConnector
|
|
@@ -7534,10 +7772,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
7534
7772
|
}], propDecorators: { dbxFilterMapSourceConnector: [{ type: i0.Input, args: [{ isSignal: true, alias: "dbxFilterMapSourceConnector", required: false }] }] } });
|
|
7535
7773
|
|
|
7536
7774
|
/**
|
|
7537
|
-
*
|
|
7775
|
+
* Provides a {@link FilterMap} instance in DI so multiple child sources can register / look up filters by string key. Use when one screen needs several independent filter contexts.
|
|
7538
7776
|
*
|
|
7539
|
-
*
|
|
7540
|
-
* map
|
|
7777
|
+
* @dbxFilter
|
|
7778
|
+
* @dbxFilterSlug map
|
|
7779
|
+
* @dbxFilterRelated map-source, map-source-connector
|
|
7780
|
+
* @dbxFilterSkillRefs dbx__ref__dbx-component-patterns
|
|
7541
7781
|
*
|
|
7542
7782
|
* @example
|
|
7543
7783
|
* ```html
|
|
@@ -7582,12 +7822,17 @@ function isClickablePartialFilterPreset(preset) {
|
|
|
7582
7822
|
}
|
|
7583
7823
|
|
|
7584
7824
|
/**
|
|
7585
|
-
* Provides a {@link FilterSource} in
|
|
7825
|
+
* Provides a {@link FilterSource} in DI so child components can inject and consume the current filter value. Use this on a wrapper element when the child is the canonical owner of the filter (a filter form, a chip group).
|
|
7826
|
+
*
|
|
7827
|
+
* @dbxFilter
|
|
7828
|
+
* @dbxFilterSlug source
|
|
7829
|
+
* @dbxFilterRelated connect-source, source-connector, map-source
|
|
7830
|
+
* @dbxFilterSkillRefs dbx__ref__dbx-component-patterns
|
|
7586
7831
|
*
|
|
7587
7832
|
* @example
|
|
7588
7833
|
* ```html
|
|
7589
7834
|
* <div dbxFilterSource>
|
|
7590
|
-
* <my-
|
|
7835
|
+
* <my-filter-form></my-filter-form>
|
|
7591
7836
|
* </div>
|
|
7592
7837
|
* ```
|
|
7593
7838
|
*/
|
|
@@ -8560,8 +8805,7 @@ class SimpleStorageAccessor {
|
|
|
8560
8805
|
return allStoredData
|
|
8561
8806
|
.map((storedData) => {
|
|
8562
8807
|
const readStoredData = this.readStoredData(storedData);
|
|
8563
|
-
|
|
8564
|
-
return result;
|
|
8808
|
+
return !readStoredData.expired ? readStoredData.convertedData : null;
|
|
8565
8809
|
})
|
|
8566
8810
|
.filter(hasNonNullValue);
|
|
8567
8811
|
}));
|
|
@@ -9034,5 +9278,5 @@ function hasNonTrivialChildNodes(element) {
|
|
|
9034
9278
|
* Generated bundle index. Do not edit.
|
|
9035
9279
|
*/
|
|
9036
9280
|
|
|
9037
|
-
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, 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_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, 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, 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, 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, createInjectorForInjectionComponentConfig, 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, 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$1 as onDbxAppAuth, index$3 as onDbxAppContext, onRouterTransitionEventType, onRouterTransitionSuccessEvent, pipeActionStore, provideActionStoreSource, provideDbxActionButtonEchoConfig, provideDbxAnchor, provideDbxAppAuth, provideDbxAppAuthRouter, provideDbxAppAuthRouterState, provideDbxAppAuthState, provideDbxAppContextState, provideDbxAppEnviroment, provideDbxAssetLoader, provideDbxButton, provideDbxInjectionContext, provideDbxRouteModelIdDirectiveDelegate, provideDbxRouteModelKeyDirectiveDelegate, provideDbxStorage, provideDbxUIRouterService, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, switchMapDbxInjectionComponentConfig, tapDetectChanges, tapSafeMarkForCheck, transformEmptyStringInputToUndefined, useActionStore };
|
|
9281
|
+
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, 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_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, DbxAnchor, DbxAngularRouterService, DbxAppAuthRouterEffects, DbxAppAuthRouterService, DbxAppAuthRoutes, DbxAppAuthStateService, DbxAppContextService, DbxAppContextStateDirective, DbxAppEnviroment, DbxAppEnviromentService, 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, 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, createInjectorForInjectionComponentConfig, 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, 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$1 as onDbxAppAuth, index$3 as onDbxAppContext, onRouterTransitionEventType, onRouterTransitionSuccessEvent, pipeActionStore, provideActionStoreSource, provideDbxActionButtonEchoConfig, provideDbxAnchor, provideDbxAppAuth, provideDbxAppAuthRouter, provideDbxAppAuthRouterState, provideDbxAppAuthState, provideDbxAppContextState, provideDbxAppEnviroment, provideDbxAssetLoader, provideDbxButton, provideDbxInjectionContext, provideDbxRouteModelIdDirectiveDelegate, provideDbxRouteModelKeyDirectiveDelegate, provideDbxStorage, provideDbxUIRouterService, provideFilterSource, provideFilterSourceConnector, provideFilterSourceDirective, provideSecondaryActionStoreSource, redirectBasedOnAuthUserState, redirectForIdentifierParamHook, redirectForUserIdentifierParamHook, refStringToSegueRef, safeDetectChanges, safeMarkForCheck, safeUseCdRef, successTransition, switchMapDbxInjectionComponentConfig, tapDetectChanges, tapSafeMarkForCheck, transformEmptyStringInputToUndefined, useActionStore };
|
|
9038
9282
|
//# sourceMappingURL=dereekb-dbx-core.mjs.map
|