@dereekb/dbx-core 9.24.30 → 9.24.32

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.
@@ -0,0 +1,13 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { Maybe } from '@dereekb/util';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Pipe that takes in a number and returns the number formatted as a dollar using dollarAmountString().
6
+ *
7
+ * Can provide a default string value to use when the input is null or undefined.
8
+ */
9
+ export declare class DollarAmountPipe implements PipeTransform {
10
+ transform(input: Maybe<number>, defaultIfNull?: Maybe<string>): Maybe<string>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DollarAmountPipe, never>;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<DollarAmountPipe, "dollarAmount", false>;
13
+ }
@@ -1,2 +1,3 @@
1
1
  export * from './getvalue.pipe';
2
+ export * from './dollar.pipe';
2
3
  export * from './value.pipe.module';
@@ -1,7 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./getvalue.pipe";
2
+ import * as i1 from "./dollar.pipe";
3
+ import * as i2 from "./getvalue.pipe";
3
4
  export declare class DbxValuePipeModule {
4
5
  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 ɵmod: i0.ɵɵNgModuleDeclaration<DbxValuePipeModule, [typeof i1.DollarAmountPipe, typeof i2.GetValuePipe, typeof i2.GetValueOncePipe], never, [typeof i1.DollarAmountPipe, typeof i2.GetValuePipe, typeof i2.GetValueOncePipe]>;
6
7
  static ɵinj: i0.ɵɵInjectorDeclaration<DbxValuePipeModule>;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-core",
3
- "version": "9.24.30",
3
+ "version": "9.24.32",
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.24.30",
13
- "@dereekb/rxjs": "9.24.30",
12
+ "@dereekb/util": "9.24.32",
13
+ "@dereekb/rxjs": "9.24.32",
14
14
  "@angular/platform-browser": "^14.2.0",
15
15
  "@uirouter/core": "^6.0.8",
16
- "@dereekb/date": "9.24.30",
16
+ "@dereekb/date": "9.24.32",
17
17
  "@angular/router": "^14.2.0"
18
18
  },
19
19
  "dependencies": {