@dereekb/dbx-core 13.11.1 → 13.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-core",
|
|
3
|
-
"version": "13.11.
|
|
3
|
+
"version": "13.11.3",
|
|
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.11.
|
|
10
|
-
"@dereekb/rxjs": "13.11.
|
|
11
|
-
"@dereekb/util": "13.11.
|
|
12
|
-
"@dereekb/vitest": "13.11.
|
|
9
|
+
"@dereekb/date": "13.11.3",
|
|
10
|
+
"@dereekb/rxjs": "13.11.3",
|
|
11
|
+
"@dereekb/util": "13.11.3",
|
|
12
|
+
"@dereekb/vitest": "13.11.3",
|
|
13
13
|
"@ngrx/component-store": "^21.1.0",
|
|
14
14
|
"@ngrx/effects": "^21.1.0",
|
|
15
15
|
"@ngrx/store": "^21.1.0",
|
|
@@ -2008,6 +2008,7 @@ interface DbxActionContextSourceReference<T = unknown, O = unknown> extends Dest
|
|
|
2008
2008
|
* @typeParam O - The output result type.
|
|
2009
2009
|
* @param sourceInstance - The source instance to wrap.
|
|
2010
2010
|
* @returns A destroyable reference to the source instance.
|
|
2011
|
+
* @__NO_SIDE_EFFECTS__
|
|
2011
2012
|
*/
|
|
2012
2013
|
declare function makeDbxActionContextSourceReference<T, O>(sourceInstance: DbxActionContextStoreSourceInstance<T, O>): DbxActionContextSourceReference<T, O>;
|
|
2013
2014
|
|
|
@@ -2497,6 +2498,7 @@ interface AuthTransitionStateData {
|
|
|
2497
2498
|
* @see {@link enableIsLoggedInHook} for a login-based usage.
|
|
2498
2499
|
* @see {@link enableHasAuthRoleHook} for a role-based usage.
|
|
2499
2500
|
* @see {@link enableHasAuthStateHook} for a state-based usage.
|
|
2501
|
+
* @__NO_SIDE_EFFECTS__
|
|
2500
2502
|
*/
|
|
2501
2503
|
declare function makeAuthTransitionHook(config: AuthTransitionHookConfig): TransitionHookFn;
|
|
2502
2504
|
|
|
@@ -5271,6 +5273,7 @@ declare class DbxUIRouterService implements DbxRouterService, DbxRouterTransitio
|
|
|
5271
5273
|
*
|
|
5272
5274
|
* @see {@link DbxUIRouterService}
|
|
5273
5275
|
* @see {@link DbxCoreAngularRouterSegueModule} for the Angular Router alternative
|
|
5276
|
+
* @__NO_SIDE_EFFECTS__
|
|
5274
5277
|
*/
|
|
5275
5278
|
declare function provideDbxUIRouterService(): EnvironmentProviders;
|
|
5276
5279
|
|
|
@@ -5473,6 +5476,7 @@ interface IsSegueRefActiveFunctionConfig {
|
|
|
5473
5476
|
* @returns A callable function that returns `true` when the route is active.
|
|
5474
5477
|
*
|
|
5475
5478
|
* @see {@link IsSegueRefActiveFunctionConfig}
|
|
5479
|
+
* @__NO_SIDE_EFFECTS__
|
|
5476
5480
|
*/
|
|
5477
5481
|
declare function isSegueRefActiveFunction(config: IsSegueRefActiveFunctionConfig): IsSegueRefActiveFunction;
|
|
5478
5482
|
|
|
@@ -7327,6 +7331,7 @@ interface DbxInjectionComponentInjectorParams<T = unknown> {
|
|
|
7327
7331
|
* parentInjector: this._injector
|
|
7328
7332
|
* });
|
|
7329
7333
|
* ```
|
|
7334
|
+
* @__NO_SIDE_EFFECTS__
|
|
7330
7335
|
*/
|
|
7331
7336
|
declare function createInjectorForInjectionComponentConfig<T>(params: DbxInjectionComponentInjectorParams<T>): Injector;
|
|
7332
7337
|
/**
|
|
@@ -7739,6 +7744,7 @@ declare class MemoryStorageObject extends FullLocalStorageObject {
|
|
|
7739
7744
|
* const storage = defaultStorageObjectFactory();
|
|
7740
7745
|
* storage.setItem('key', 'value');
|
|
7741
7746
|
* ```
|
|
7747
|
+
* @__NO_SIDE_EFFECTS__
|
|
7742
7748
|
*/
|
|
7743
7749
|
declare function defaultStorageObjectFactory(): FullStorageObject;
|
|
7744
7750
|
/**
|