@dereekb/dbx-core 13.10.0 → 13.10.2

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,20 +1,20 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-core",
3
- "version": "13.10.0",
3
+ "version": "13.10.2",
4
4
  "peerDependencies": {
5
- "@angular/common": "21.2.4",
6
- "@angular/core": "21.2.4",
7
- "@angular/router": "21.2.4",
8
- "@dereekb/date": "13.10.0",
9
- "@dereekb/rxjs": "13.10.0",
10
- "@dereekb/util": "13.10.0",
11
- "@dereekb/vitest": "13.10.0",
12
- "@ngrx/component-store": "^21.0.0",
13
- "@ngrx/effects": "^21.0.0",
14
- "@ngrx/store": "^21.0.0",
5
+ "@angular/common": "21.2.10",
6
+ "@angular/core": "21.2.10",
7
+ "@angular/router": "21.2.10",
8
+ "@dereekb/date": "13.10.2",
9
+ "@dereekb/rxjs": "13.10.2",
10
+ "@dereekb/util": "13.10.2",
11
+ "@dereekb/vitest": "13.10.2",
12
+ "@ngrx/component-store": "^21.1.0",
13
+ "@ngrx/effects": "^21.1.0",
14
+ "@ngrx/store": "^21.1.0",
15
15
  "@uirouter/core": "^6.1.2",
16
- "date-fns": "^4.0.0",
17
- "rxjs": "^7.8.0"
16
+ "date-fns": "^4.1.0",
17
+ "rxjs": "^7.8.2"
18
18
  },
19
19
  "dependencies": {
20
20
  "tslib": "^2.3.0"
@@ -30,5 +30,6 @@
30
30
  "default": "./fesm2022/dereekb-dbx-core.mjs"
31
31
  }
32
32
  },
33
- "sideEffects": false
33
+ "sideEffects": false,
34
+ "type": "module"
34
35
  }
@@ -2870,6 +2870,15 @@ declare namespace index_d$3 {
2870
2870
  export type { index_d$3_DbxAppContextFeatureState as DbxAppContextFeatureState, State$1 as State };
2871
2871
  }
2872
2872
 
2873
+ /**
2874
+ * Type that contains the dbx-core contextual ngrx state information about an app's context.
2875
+ *
2876
+ * This is the "full state" of our DbxAppContext. It is the sum of the fromDbxContext.State interface.
2877
+ *
2878
+ * Sub-state types that need to be aware of this typeing may extend (via union) this type.
2879
+ */
2880
+ type DbxAppContextFullState = State$1;
2881
+
2873
2882
  /**
2874
2883
  * Action to set the current DbxAppContextState value.
2875
2884
  */
@@ -2892,21 +2901,16 @@ declare namespace data_action_d {
2892
2901
  };
2893
2902
  }
2894
2903
 
2904
+ /**
2905
+ * Accessor for the DbxAppContextStateData in our DbxAppContextFeatureState.
2906
+ */
2907
+
2895
2908
  declare namespace index_d$2 {
2896
2909
  export {
2897
2910
  data_action_d as DbxAppContextActions,
2898
2911
  };
2899
2912
  }
2900
2913
 
2901
- /**
2902
- * Type that contains the dbx-core contextual ngrx state information about an app's context.
2903
- *
2904
- * This is the "full state" of our DbxAppContext. It is the sum of the fromDbxContext.State interface.
2905
- *
2906
- * Sub-state types that need to be aware of this typeing may extend (via union) this type.
2907
- */
2908
- type DbxAppContextFullState = State$1;
2909
-
2910
2914
  /**
2911
2915
  * Service for dispatching and selecting the application's {@link DbxAppContextState} from the NgRx store.
2912
2916
  *
@@ -3130,6 +3134,18 @@ declare namespace index_d$1 {
3130
3134
  export type { index_d$1_DbxAppAuthFeatureState as DbxAppAuthFeatureState, index_d$1_State as State };
3131
3135
  }
3132
3136
 
3137
+ /**
3138
+ * Top-level NgRx state interface that includes the dbx-core auth feature state.
3139
+ *
3140
+ * This type extends the root NgRx store state with the auth feature slice keyed by
3141
+ * the `'app.auth'` feature key. Use this type when injecting the NgRx `Store` in services
3142
+ * or effects that need access to the auth state selectors.
3143
+ *
3144
+ * @see {@link fromDbxAppAuth.DbxAppAuthFeatureState} for the shape of the auth feature slice.
3145
+ * @see {@link DbxAppAuthStateService} for a convenience service wrapping store access.
3146
+ */
3147
+ type DbxAppAuthFullState = State;
3148
+
3133
3149
  /**
3134
3150
  * NgRx action dispatched when the user has successfully logged in.
3135
3151
  *
@@ -3243,6 +3259,10 @@ declare namespace user_action_d {
3243
3259
  };
3244
3260
  }
3245
3261
 
3262
+ /**
3263
+ * Actions related to the auth state.
3264
+ */
3265
+
3246
3266
  declare namespace index_d {
3247
3267
  export {
3248
3268
  auth_action_d as DbxAppAuthActions,
@@ -3250,18 +3270,6 @@ declare namespace index_d {
3250
3270
  };
3251
3271
  }
3252
3272
 
3253
- /**
3254
- * Top-level NgRx state interface that includes the dbx-core auth feature state.
3255
- *
3256
- * This type extends the root NgRx store state with the auth feature slice keyed by
3257
- * the `'app.auth'` feature key. Use this type when injecting the NgRx `Store` in services
3258
- * or effects that need access to the auth state selectors.
3259
- *
3260
- * @see {@link fromDbxAppAuth.DbxAppAuthFeatureState} for the shape of the auth feature slice.
3261
- * @see {@link DbxAppAuthStateService} for a convenience service wrapping store access.
3262
- */
3263
- type DbxAppAuthFullState = State;
3264
-
3265
3273
  /**
3266
3274
  * Enum describing the type of a router transition event.
3267
3275
  *