@dereekb/dbx-core 13.11.2 → 13.11.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.
@@ -3120,6 +3120,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.11", ngImpo
3120
3120
  * @typeParam O - The output result type.
3121
3121
  * @param sourceInstance - The source instance to wrap.
3122
3122
  * @returns A destroyable reference to the source instance.
3123
+ * @__NO_SIDE_EFFECTS__
3123
3124
  */
3124
3125
  function makeDbxActionContextSourceReference(sourceInstance) {
3125
3126
  return {
@@ -3235,6 +3236,7 @@ class DbxAuthService {
3235
3236
  * @see {@link enableIsLoggedInHook} for a login-based usage.
3236
3237
  * @see {@link enableHasAuthRoleHook} for a role-based usage.
3237
3238
  * @see {@link enableHasAuthStateHook} for a state-based usage.
3239
+ * @__NO_SIDE_EFFECTS__
3238
3240
  */
3239
3241
  function makeAuthTransitionHook(config) {
3240
3242
  const { defaultRedirectTarget, errorRedirectTarget = defaultRedirectTarget, timeoutTime = 1000 } = config;
@@ -5821,6 +5823,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.11", ngImpo
5821
5823
  *
5822
5824
  * @see {@link DbxUIRouterService}
5823
5825
  * @see {@link DbxCoreAngularRouterSegueModule} for the Angular Router alternative
5826
+ * @__NO_SIDE_EFFECTS__
5824
5827
  */
5825
5828
  function provideDbxUIRouterService() {
5826
5829
  const providers = [
@@ -6002,6 +6005,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.11", ngImpo
6002
6005
  * @returns A callable function that returns `true` when the route is active.
6003
6006
  *
6004
6007
  * @see {@link IsSegueRefActiveFunctionConfig}
6008
+ * @__NO_SIDE_EFFECTS__
6005
6009
  */
6006
6010
  function isSegueRefActiveFunction(config) {
6007
6011
  const { dbxRouterService, segueRef, activeExactly = false } = config;
@@ -7949,6 +7953,7 @@ function mergeStaticProviders(...providers) {
7949
7953
  * parentInjector: this._injector
7950
7954
  * });
7951
7955
  * ```
7956
+ * @__NO_SIDE_EFFECTS__
7952
7957
  */
7953
7958
  function createInjectorForInjectionComponentConfig(params) {
7954
7959
  const { config, parentInjector } = params;
@@ -9099,6 +9104,7 @@ class MemoryStorageObject extends FullLocalStorageObject {
9099
9104
  * const storage = defaultStorageObjectFactory();
9100
9105
  * storage.setItem('key', 'value');
9101
9106
  * ```
9107
+ * @__NO_SIDE_EFFECTS__
9102
9108
  */
9103
9109
  function defaultStorageObjectFactory() {
9104
9110
  let storageObject = new FullLocalStorageObject(localStorage);