@dereekb/dbx-core 9.23.28 → 9.24.1

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.
@@ -6,6 +6,8 @@ import { Maybe } from '@dereekb/util';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Directive that automatically triggers the action periodically when it is in a modified state.
9
+ *
10
+ * When using auto triggers be sure to make sure that the action is not triggering too often due to misconfiguration.
9
11
  */
10
12
  export declare class DbxActionAutoTriggerDirective<T = unknown, O = unknown> extends AbstractSubscriptionDirective implements OnInit, OnDestroy {
11
13
  readonly source: DbxActionContextStoreSourceInstance<T, O>;
@@ -1,4 +1,5 @@
1
1
  export * from './async';
2
2
  export * from './date';
3
3
  export * from './misc';
4
+ export * from './value';
4
5
  export * from './pipe.module';
@@ -1,8 +1,10 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./misc/misc.pipe.module";
3
- import * as i2 from "./date/date.pipe.module";
2
+ import * as i1 from "./async/async.pipe.module";
3
+ import * as i2 from "./misc/misc.pipe.module";
4
+ import * as i3 from "./date/date.pipe.module";
5
+ import * as i4 from "./value/value.pipe.module";
4
6
  export declare class DbxPipesModule {
5
7
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxPipesModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPipesModule, never, never, [typeof i1.DbxMiscPipeModule, typeof i2.DbxDatePipeModule]>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPipesModule, never, never, [typeof i1.DbxAsyncPipeModule, typeof i2.DbxMiscPipeModule, typeof i3.DbxDatePipeModule, typeof i4.DbxValuePipeModule]>;
7
9
  static ɵinj: i0.ɵɵInjectorDeclaration<DbxPipesModule>;
8
10
  }
@@ -0,0 +1,19 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { GetterOrValue } from '@dereekb/util';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Retrieves the value from the getter. This is a non-pure pipe. Use the getValueOncePipe instead for a pure pipe.
6
+ */
7
+ export declare class GetValuePipe implements PipeTransform {
8
+ transform<T, A = any>(input: GetterOrValue<T>, args?: A): T;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetValuePipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetValuePipe, "getValue", false>;
11
+ }
12
+ /**
13
+ * Pipes a GetValuePipe to an Observable value.
14
+ */
15
+ export declare class GetValueOncePipe implements PipeTransform {
16
+ transform<T, A = any>(input: GetterOrValue<T>, args?: A): T;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetValueOncePipe, never>;
18
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetValueOncePipe, "getValueOnce", false>;
19
+ }
@@ -0,0 +1,2 @@
1
+ export * from './getvalue.pipe';
2
+ export * from './value.pipe.module';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./getvalue.pipe";
3
+ export declare class DbxValuePipeModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxValuePipeModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbxValuePipeModule, [typeof i1.GetValuePipe, typeof i1.GetValueOncePipe], never, [typeof i1.GetValuePipe, typeof i1.GetValueOncePipe]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbxValuePipeModule>;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-core",
3
- "version": "9.23.28",
3
+ "version": "9.24.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0",
6
6
  "@angular/core": "^14.0.0",
@@ -9,11 +9,11 @@
9
9
  "@ngrx/effects": "^14.0.0",
10
10
  "@ngrx/entity": "^14.0.0",
11
11
  "@ngrx/store": "^14.0.0",
12
- "@dereekb/util": "9.23.28",
13
- "@dereekb/rxjs": "9.23.28",
12
+ "@dereekb/util": "9.24.1",
13
+ "@dereekb/rxjs": "9.24.1",
14
14
  "@angular/platform-browser": "^14.2.0",
15
15
  "@uirouter/core": "^6.0.8",
16
- "@dereekb/date": "9.23.28",
16
+ "@dereekb/date": "9.24.1",
17
17
  "@angular/router": "^14.2.0"
18
18
  },
19
19
  "dependencies": {