@bitblit/ngx-acute-common 5.0.518-alpha → 5.0.519-alpha

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.
Files changed (69) hide show
  1. package/lib/build/ngx-acute-common-info.d.ts +5 -0
  2. package/lib/components/dialogs/alert/alert.component.d.ts +12 -0
  3. package/lib/components/dialogs/alert/alert.component.js +10 -6
  4. package/lib/components/dialogs/alert/alert.component.js.map +1 -1
  5. package/lib/components/dialogs/block-ui/block-ui.component.d.ts +12 -0
  6. package/lib/components/dialogs/block-ui/block-ui.component.js +11 -10
  7. package/lib/components/dialogs/block-ui/block-ui.component.js.map +1 -1
  8. package/lib/esm2022/build/ngx-acute-common-info.d.ts +5 -0
  9. package/lib/esm2022/components/dialogs/alert/alert.component.d.ts +9 -0
  10. package/lib/esm2022/components/dialogs/block-ui/block-ui.component.d.ts +9 -0
  11. package/lib/esm2022/index.d.ts +18 -0
  12. package/lib/esm2022/model/google-analytics-config.d.ts +3 -0
  13. package/lib/esm2022/ngx-acute-common.mjs +24 -62
  14. package/lib/esm2022/ngx-acute-common.mjs.map +1 -1
  15. package/lib/esm2022/pipes/capitalize.pipe.d.ts +4 -0
  16. package/lib/esm2022/pipes/dollar-formatted.pipe.d.ts +4 -0
  17. package/lib/esm2022/pipes/map-values.pipe.d.ts +4 -0
  18. package/lib/esm2022/pipes/number-with-commas.pipe.d.ts +4 -0
  19. package/lib/esm2022/pipes/order-by.pipe.d.ts +5 -0
  20. package/lib/esm2022/pipes/percent-formatted.pipe.d.ts +4 -0
  21. package/lib/esm2022/pipes/plural.pipe.d.ts +4 -0
  22. package/lib/esm2022/pipes/round.pipe.d.ts +4 -0
  23. package/lib/esm2022/pipes/time-ago-formatted.pipe.d.ts +4 -0
  24. package/lib/esm2022/pipes/timing.pipe.d.ts +5 -0
  25. package/lib/esm2022/services/google-analytics.service.d.ts +9 -0
  26. package/lib/esm2022/services/graphql-query.service.d.ts +14 -0
  27. package/lib/esm2022/services/local-storage.service.d.ts +8 -0
  28. package/lib/esm2022/services/window-ref.service.d.ts +3 -0
  29. package/lib/index.d.ts +18 -0
  30. package/lib/index.js +1 -2
  31. package/lib/index.js.map +1 -1
  32. package/lib/model/google-analytics-config.d.ts +3 -0
  33. package/lib/pipes/capitalize.pipe.d.ts +7 -0
  34. package/lib/pipes/capitalize.pipe.js +2 -2
  35. package/lib/pipes/capitalize.pipe.js.map +1 -1
  36. package/lib/pipes/dollar-formatted.pipe.d.ts +7 -0
  37. package/lib/pipes/dollar-formatted.pipe.js +2 -2
  38. package/lib/pipes/dollar-formatted.pipe.js.map +1 -1
  39. package/lib/pipes/map-values.pipe.d.ts +7 -0
  40. package/lib/pipes/map-values.pipe.js +2 -2
  41. package/lib/pipes/map-values.pipe.js.map +1 -1
  42. package/lib/pipes/number-with-commas.pipe.d.ts +7 -0
  43. package/lib/pipes/number-with-commas.pipe.js +2 -2
  44. package/lib/pipes/number-with-commas.pipe.js.map +1 -1
  45. package/lib/pipes/order-by.pipe.d.ts +8 -0
  46. package/lib/pipes/order-by.pipe.js +2 -2
  47. package/lib/pipes/order-by.pipe.js.map +1 -1
  48. package/lib/pipes/percent-formatted.pipe.d.ts +7 -0
  49. package/lib/pipes/percent-formatted.pipe.js +2 -2
  50. package/lib/pipes/percent-formatted.pipe.js.map +1 -1
  51. package/lib/pipes/plural.pipe.d.ts +7 -0
  52. package/lib/pipes/plural.pipe.js +2 -2
  53. package/lib/pipes/plural.pipe.js.map +1 -1
  54. package/lib/pipes/round.pipe.d.ts +7 -0
  55. package/lib/pipes/round.pipe.js +2 -2
  56. package/lib/pipes/round.pipe.js.map +1 -1
  57. package/lib/pipes/time-ago-formatted.pipe.d.ts +7 -0
  58. package/lib/pipes/time-ago-formatted.pipe.js +2 -2
  59. package/lib/pipes/time-ago-formatted.pipe.js.map +1 -1
  60. package/lib/pipes/timing.pipe.d.ts +8 -0
  61. package/lib/pipes/timing.pipe.js +2 -2
  62. package/lib/pipes/timing.pipe.js.map +1 -1
  63. package/lib/services/google-analytics.service.d.ts +12 -0
  64. package/lib/services/graphql-query.service.d.ts +17 -0
  65. package/lib/services/local-storage.service.d.ts +11 -0
  66. package/lib/services/window-ref.service.d.ts +6 -0
  67. package/package.json +4 -4
  68. package/lib/acute-common.module.js +0 -94
  69. package/lib/acute-common.module.js.map +0 -1
@@ -0,0 +1,5 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ export declare class TimingPipe implements PipeTransform {
3
+ transform(time: number): string;
4
+ private initZero;
5
+ }
@@ -0,0 +1,9 @@
1
+ import { Router } from '@angular/router';
2
+ export declare class GoogleAnalyticsService {
3
+ private router;
4
+ private static readonly IS_PROD;
5
+ constructor(router: Router);
6
+ initialize(): void;
7
+ private onRouteChange;
8
+ event(action: string, eventCategory?: string, eventLabel?: string, value?: string): void;
9
+ }
@@ -0,0 +1,14 @@
1
+ import { DialogService } from 'primeng/dynamicdialog';
2
+ import { MessageService } from 'primeng/api';
3
+ import { GraphqlRatchet } from '@bitblit/ratchet-graphql/graphql/graphql-ratchet';
4
+ import { AuthorizationStyle } from "@bitblit/ratchet-graphql/graphql/authorization-style";
5
+ export declare class GraphqlQueryService {
6
+ private graphqlRatchet;
7
+ private dialogService;
8
+ private messageService;
9
+ constructor(graphqlRatchet: GraphqlRatchet, dialogService: DialogService, messageService: MessageService);
10
+ executeQuery<T>(queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
11
+ executeQueryWithBlock<T>(blockMessage: string, queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
12
+ executeMutate<T>(queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
13
+ executeMutateWithBlock<T>(blockMessage: string, queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
14
+ }
@@ -0,0 +1,8 @@
1
+ export declare function storageFinder(): Storage | null;
2
+ export declare class LocalStorageService<T> {
3
+ private static readonly APP_NAME;
4
+ get storageReady(): boolean;
5
+ clear(): void;
6
+ update(value: T): T;
7
+ fetch(): T;
8
+ }
@@ -0,0 +1,3 @@
1
+ export declare class WindowRefService {
2
+ nativeWindow(): Window;
3
+ }
package/lib/index.d.ts ADDED
@@ -0,0 +1,18 @@
1
+ export * from './build/ngx-acute-common-info';
2
+ export * from './components/dialogs/alert/alert.component';
3
+ export * from './components/dialogs/block-ui/block-ui.component';
4
+ export * from './model/google-analytics-config';
5
+ export * from './pipes/capitalize.pipe';
6
+ export * from './pipes/dollar-formatted.pipe';
7
+ export * from './pipes/map-values.pipe';
8
+ export * from './pipes/number-with-commas.pipe';
9
+ export * from './pipes/order-by.pipe';
10
+ export * from './pipes/percent-formatted.pipe';
11
+ export * from './pipes/plural.pipe';
12
+ export * from './pipes/round.pipe';
13
+ export * from './pipes/time-ago-formatted.pipe';
14
+ export * from './pipes/timing.pipe';
15
+ export * from './services/google-analytics.service';
16
+ export * from './services/graphql-query.service';
17
+ export * from './services/local-storage.service';
18
+ export * from './services/window-ref.service';
package/lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export * from './build/ngx-acute-common-info';
2
- export * from './model/google-analytics-config';
3
2
  export * from './components/dialogs/alert/alert.component';
4
3
  export * from './components/dialogs/block-ui/block-ui.component';
4
+ export * from './model/google-analytics-config';
5
5
  export * from './pipes/capitalize.pipe';
6
6
  export * from './pipes/dollar-formatted.pipe';
7
7
  export * from './pipes/map-values.pipe';
@@ -16,5 +16,4 @@ export * from './services/google-analytics.service';
16
16
  export * from './services/graphql-query.service';
17
17
  export * from './services/local-storage.service';
18
18
  export * from './services/window-ref.service';
19
- export * from './acute-common.module';
20
19
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iCAAiC,CAAC;AAEhD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kDAAkD,CAAC;AAEjE,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC;AACtC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iCAAiC,CAAC;AAChD,cAAc,qBAAqB,CAAC;AAEpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC;AACjD,cAAc,+BAA+B,CAAC;AAE9C,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAE9C,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kDAAkD,CAAC;AAEjE,cAAc,iCAAiC,CAAC;AAEhD,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC;AACtC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iCAAiC,CAAC;AAChD,cAAc,qBAAqB,CAAC;AAEpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC;AACjD,cAAc,+BAA+B,CAAC"}
@@ -0,0 +1,3 @@
1
+ export interface GoogleAnalyticsConfig {
2
+ tagId: () => string | string;
3
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CapitalizePipe implements PipeTransform {
4
+ transform(input: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizePipe, "acuteCapitalize", true>;
7
+ }
@@ -7,10 +7,10 @@ export class CapitalizePipe {
7
7
  : input;
8
8
  }
9
9
  static ɵfac = function CapitalizePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CapitalizePipe)(); };
10
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteCapitalize", type: CapitalizePipe, pure: true });
10
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteCapitalize", type: CapitalizePipe, pure: true, standalone: true });
11
11
  }
12
12
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CapitalizePipe, [{
13
13
  type: Pipe,
14
- args: [{ name: 'acuteCapitalize' }]
14
+ args: [{ name: 'acuteCapitalize', standalone: true }]
15
15
  }], null, null); })();
16
16
  //# sourceMappingURL=capitalize.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"capitalize.pipe.js","sourceRoot":"","sources":["../../src/pipes/capitalize.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,cAAc;IAEzB,SAAS,CAAC,KAAa;QACrB,OAAO,KAAK,IAAI,KAAK,CAAC,MAAM;YAC1B,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAChE,CAAC,CAAC,KAAK,CAAC;IACZ,CAAC;wGANU,cAAc;oEAAd,cAAc;;iFAAd,cAAc;cAD1B,IAAI;eAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE"}
1
+ {"version":3,"file":"capitalize.pipe.js","sourceRoot":"","sources":["../../src/pipes/capitalize.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,cAAc;IAEzB,SAAS,CAAC,KAAa;QACrB,OAAO,KAAK,IAAI,KAAK,CAAC,MAAM;YAC1B,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YAChE,CAAC,CAAC,KAAK,CAAC;IACZ,CAAC;wGANU,cAAc;oEAAd,cAAc;;iFAAd,cAAc;cAD1B,IAAI;eAAC,EAAE,IAAI,EAAE,iBAAiB,EAAG,UAAU,EAAE,IAAI,EAAC"}
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DollarFormattedPipe implements PipeTransform {
4
+ transform(input: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DollarFormattedPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<DollarFormattedPipe, "acuteDollars", true>;
7
+ }
@@ -9,10 +9,10 @@ export class DollarFormattedPipe {
9
9
  return rval;
10
10
  }
11
11
  static ɵfac = function DollarFormattedPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DollarFormattedPipe)(); };
12
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteDollars", type: DollarFormattedPipe, pure: true });
12
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteDollars", type: DollarFormattedPipe, pure: true, standalone: true });
13
13
  }
14
14
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DollarFormattedPipe, [{
15
15
  type: Pipe,
16
- args: [{ name: 'acuteDollars' }]
16
+ args: [{ name: 'acuteDollars', standalone: true }]
17
17
  }], null, null); })();
18
18
  //# sourceMappingURL=dollar-formatted.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"dollar-formatted.pipe.js","sourceRoot":"","sources":["../../src/pipes/dollar-formatted.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,eAAe,EAAC,MAAM,+CAA+C,CAAC;;AAG9E,MAAM,OAAO,mBAAmB;IAC9B,SAAS,CAAC,KAAa;QACrB,MAAM,IAAI,GACR,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS;YACnC,CAAC,CAAC,MAAM;YACR,CAAC,CAAC,eAAe,CAAC,YAAY,CAAC,KAAK,CAAC,CAAA;QACzC,OAAO,IAAI,CAAC;IACd,CAAC;6GAPU,mBAAmB;iEAAnB,mBAAmB;;iFAAnB,mBAAmB;cAD/B,IAAI;eAAC,EAAE,IAAI,EAAE,cAAc,EAAC"}
1
+ {"version":3,"file":"dollar-formatted.pipe.js","sourceRoot":"","sources":["../../src/pipes/dollar-formatted.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,eAAe,EAAC,MAAM,+CAA+C,CAAC;;AAG9E,MAAM,OAAO,mBAAmB;IAC9B,SAAS,CAAC,KAAa;QACrB,MAAM,IAAI,GACR,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS;YACnC,CAAC,CAAC,MAAM;YACR,CAAC,CAAC,eAAe,CAAC,YAAY,CAAC,KAAK,CAAC,CAAA;QACzC,OAAO,IAAI,CAAC;IACd,CAAC;6GAPU,mBAAmB;iEAAnB,mBAAmB;;iFAAnB,mBAAmB;cAD/B,IAAI;eAAC,EAAE,IAAI,EAAE,cAAc,EAAE,UAAU,EAAE,IAAI,EAAE"}
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MapValuesPipe implements PipeTransform {
4
+ transform(value: any, args?: any[]): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapValuesPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<MapValuesPipe, "acuteMapValues", true>;
7
+ }
@@ -14,10 +14,10 @@ export class MapValuesPipe {
14
14
  return returnArray;
15
15
  }
16
16
  static ɵfac = function MapValuesPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MapValuesPipe)(); };
17
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteMapValues", type: MapValuesPipe, pure: true });
17
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteMapValues", type: MapValuesPipe, pure: true, standalone: true });
18
18
  }
19
19
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MapValuesPipe, [{
20
20
  type: Pipe,
21
- args: [{ name: 'acuteMapValues' }]
21
+ args: [{ name: 'acuteMapValues', standalone: true }]
22
22
  }], null, null); })();
23
23
  //# sourceMappingURL=map-values.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"map-values.pipe.js","sourceRoot":"","sources":["../../src/pipes/map-values.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,uCAAuC,CAAC;;AAG/D,MAAM,OAAO,aAAa;IACxB,SAAS,CAAC,KAAU,EAAE,IAAY;QAChC,MAAM,WAAW,GAAG,EAAE,CAAC;QAEvB,KAAK,MAAM,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;YACnC,WAAW,CAAC,IAAI,CAAC;gBACf,GAAG,EAAE,CAAC;gBACN,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC;aACd,CAAC,CAAC;QACL,CAAC;QAED,MAAM,CAAC,IAAI,CAAC,sBAAsB,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC;QACvD,OAAO,WAAW,CAAC;IACrB,CAAC;uGAbU,aAAa;mEAAb,aAAa;;iFAAb,aAAa;cADzB,IAAI;eAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE"}
1
+ {"version":3,"file":"map-values.pipe.js","sourceRoot":"","sources":["../../src/pipes/map-values.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,uCAAuC,CAAC;;AAG/D,MAAM,OAAO,aAAa;IACxB,SAAS,CAAC,KAAU,EAAE,IAAY;QAChC,MAAM,WAAW,GAAG,EAAE,CAAC;QAEvB,KAAK,MAAM,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;YACnC,WAAW,CAAC,IAAI,CAAC;gBACf,GAAG,EAAE,CAAC;gBACN,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC;aACd,CAAC,CAAC;QACL,CAAC;QAED,MAAM,CAAC,IAAI,CAAC,sBAAsB,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC;QACvD,OAAO,WAAW,CAAC;IACrB,CAAC;uGAbU,aAAa;mEAAb,aAAa;;iFAAb,aAAa;cADzB,IAAI;eAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,UAAU,EAAE,IAAI,EAAE"}
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class NumberWithCommasPipe implements PipeTransform {
4
+ transform(input: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumberWithCommasPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<NumberWithCommasPipe, "acuteNumberWithCommas", true>;
7
+ }
@@ -5,10 +5,10 @@ export class NumberWithCommasPipe {
5
5
  return new Intl.NumberFormat().format(input);
6
6
  }
7
7
  static ɵfac = function NumberWithCommasPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NumberWithCommasPipe)(); };
8
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteNumberWithCommas", type: NumberWithCommasPipe, pure: true });
8
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteNumberWithCommas", type: NumberWithCommasPipe, pure: true, standalone: true });
9
9
  }
10
10
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NumberWithCommasPipe, [{
11
11
  type: Pipe,
12
- args: [{ name: 'acuteNumberWithCommas' }]
12
+ args: [{ name: 'acuteNumberWithCommas', standalone: true }]
13
13
  }], null, null); })();
14
14
  //# sourceMappingURL=number-with-commas.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"number-with-commas.pipe.js","sourceRoot":"","sources":["../../src/pipes/number-with-commas.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,oBAAoB;IAE/B,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAC/C,CAAC;8GAJU,oBAAoB;0EAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE"}
1
+ {"version":3,"file":"number-with-commas.pipe.js","sourceRoot":"","sources":["../../src/pipes/number-with-commas.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,oBAAoB;IAE/B,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAC/C,CAAC;8GAJU,oBAAoB;0EAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,uBAAuB,EAAI,UAAU,EAAE,IAAI,EAAC"}
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class OrderByPipe implements PipeTransform {
4
+ static _orderByComparator(a: any, b: any): number;
5
+ transform(input: any, [config]: [string?]): any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrderByPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<OrderByPipe, "acuteOrderBy", true>;
8
+ }
@@ -50,10 +50,10 @@ export class OrderByPipe {
50
50
  }
51
51
  }
52
52
  static ɵfac = function OrderByPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || OrderByPipe)(); };
53
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteOrderBy", type: OrderByPipe, pure: false });
53
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteOrderBy", type: OrderByPipe, pure: false, standalone: true });
54
54
  }
55
55
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OrderByPipe, [{
56
56
  type: Pipe,
57
- args: [{ name: 'acuteOrderBy', pure: false }]
57
+ args: [{ name: 'acuteOrderBy', pure: false, standalone: true }]
58
58
  }], null, null); })();
59
59
  //# sourceMappingURL=order-by.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"order-by.pipe.js","sourceRoot":"","sources":["../../src/pipes/order-by.pipe.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"order-by.pipe.js","sourceRoot":"","sources":["../../src/pipes/order-by.pipe.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PercentFormattedPipe implements PipeTransform {
4
+ transform(input: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<PercentFormattedPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<PercentFormattedPipe, "acutePercent", true>;
7
+ }
@@ -6,10 +6,10 @@ export class PercentFormattedPipe {
6
6
  return NumberRatchet.pctFormatted(input);
7
7
  }
8
8
  static ɵfac = function PercentFormattedPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || PercentFormattedPipe)(); };
9
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acutePercent", type: PercentFormattedPipe, pure: true });
9
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acutePercent", type: PercentFormattedPipe, pure: true, standalone: true });
10
10
  }
11
11
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PercentFormattedPipe, [{
12
12
  type: Pipe,
13
- args: [{ name: 'acutePercent' }]
13
+ args: [{ name: 'acutePercent', standalone: true }]
14
14
  }], null, null); })();
15
15
  //# sourceMappingURL=percent-formatted.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"percent-formatted.pipe.js","sourceRoot":"","sources":["../../src/pipes/percent-formatted.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;;AAG1E,MAAM,OAAO,oBAAoB;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,aAAa,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC;8GAHU,oBAAoB;iEAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,cAAc,EAAG"}
1
+ {"version":3,"file":"percent-formatted.pipe.js","sourceRoot":"","sources":["../../src/pipes/percent-formatted.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;;AAG1E,MAAM,OAAO,oBAAoB;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,aAAa,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC;8GAHU,oBAAoB;iEAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,cAAc,EAAG,UAAU,EAAE,IAAI,EAAE"}
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PluralPipe implements PipeTransform {
4
+ transform(input: number, label: string, pluralLabel?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<PluralPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<PluralPipe, "acutePlural", true>;
7
+ }
@@ -10,10 +10,10 @@ export class PluralPipe {
10
10
  : `${input} ${label}s`;
11
11
  }
12
12
  static ɵfac = function PluralPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || PluralPipe)(); };
13
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acutePlural", type: PluralPipe, pure: true });
13
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acutePlural", type: PluralPipe, pure: true, standalone: true });
14
14
  }
15
15
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PluralPipe, [{
16
16
  type: Pipe,
17
- args: [{ name: 'acutePlural' }]
17
+ args: [{ name: 'acutePlural', standalone: true }]
18
18
  }], null, null); })();
19
19
  //# sourceMappingURL=plural.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"plural.pipe.js","sourceRoot":"","sources":["../../src/pipes/plural.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,UAAU;IAErB,SAAS,CAAC,KAAa,EAAE,KAAa,EAAE,cAAsB,EAAE;QAC9D,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QACnB,OAAO,KAAK,KAAK,CAAC;YAChB,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,EAAE;YACrB,CAAC,CAAC,WAAW;gBACX,CAAC,CAAC,GAAG,KAAK,IAAI,WAAW,EAAE;gBAC3B,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,GAAG,CAAC;IAC7B,CAAC;oGATU,UAAU;gEAAV,UAAU;;iFAAV,UAAU;cADtB,IAAI;eAAC,EAAE,IAAI,EAAE,aAAa,EAAE"}
1
+ {"version":3,"file":"plural.pipe.js","sourceRoot":"","sources":["../../src/pipes/plural.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,UAAU;IAErB,SAAS,CAAC,KAAa,EAAE,KAAa,EAAE,cAAsB,EAAE;QAC9D,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QACnB,OAAO,KAAK,KAAK,CAAC;YAChB,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,EAAE;YACrB,CAAC,CAAC,WAAW;gBACX,CAAC,CAAC,GAAG,KAAK,IAAI,WAAW,EAAE;gBAC3B,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,GAAG,CAAC;IAC7B,CAAC;oGATU,UAAU;gEAAV,UAAU;;iFAAV,UAAU;cADtB,IAAI;eAAC,EAAE,IAAI,EAAE,aAAa,EAAI,UAAU,EAAE,IAAI,EAAC"}
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class RoundPipe implements PipeTransform {
4
+ transform(input: number): number;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "acuteRound", true>;
7
+ }
@@ -5,10 +5,10 @@ export class RoundPipe {
5
5
  return Math.round(input);
6
6
  }
7
7
  static ɵfac = function RoundPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RoundPipe)(); };
8
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteRound", type: RoundPipe, pure: true });
8
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteRound", type: RoundPipe, pure: true, standalone: true });
9
9
  }
10
10
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RoundPipe, [{
11
11
  type: Pipe,
12
- args: [{ name: 'acuteRound' }]
12
+ args: [{ name: 'acuteRound', standalone: true }]
13
13
  }], null, null); })();
14
14
  //# sourceMappingURL=round.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"round.pipe.js","sourceRoot":"","sources":["../../src/pipes/round.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,SAAS;IAEpB,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAC3B,CAAC;mGAJU,SAAS;+DAAT,SAAS;;iFAAT,SAAS;cADrB,IAAI;eAAC,EAAE,IAAI,EAAE,YAAY,EAAE"}
1
+ {"version":3,"file":"round.pipe.js","sourceRoot":"","sources":["../../src/pipes/round.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,SAAS;IAEpB,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAC3B,CAAC;mGAJU,SAAS;+DAAT,SAAS;;iFAAT,SAAS;cADrB,IAAI;eAAC,EAAE,IAAI,EAAE,YAAY,EAAI,UAAU,EAAE,IAAI,EAAC"}
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TimeAgoFormattedPipe implements PipeTransform {
4
+ transform(input: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeAgoFormattedPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<TimeAgoFormattedPipe, "acuteTimeAgo", true>;
7
+ }
@@ -7,10 +7,10 @@ export class TimeAgoFormattedPipe {
7
7
  return DurationRatchet.formatMsDuration(new Date().getTime() - NumberRatchet.safeNumber(input));
8
8
  }
9
9
  static ɵfac = function TimeAgoFormattedPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TimeAgoFormattedPipe)(); };
10
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteTimeAgo", type: TimeAgoFormattedPipe, pure: true });
10
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteTimeAgo", type: TimeAgoFormattedPipe, pure: true, standalone: true });
11
11
  }
12
12
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimeAgoFormattedPipe, [{
13
13
  type: Pipe,
14
- args: [{ name: 'acuteTimeAgo' }]
14
+ args: [{ name: 'acuteTimeAgo', standalone: true }]
15
15
  }], null, null); })();
16
16
  //# sourceMappingURL=time-ago-formatted.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"time-ago-formatted.pipe.js","sourceRoot":"","sources":["../../src/pipes/time-ago-formatted.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAgB,MAAM,eAAe,CAAC;AAClD,OAAO,EAAC,eAAe,EAAC,MAAM,+CAA+C,CAAC;AAC9E,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;;AAG1E,MAAM,OAAO,oBAAoB;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,eAAe,CAAC,gBAAgB,CAAC,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,GAAG,aAAa,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAClG,CAAC;8GAHU,oBAAoB;iEAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,cAAc,EAAE"}
1
+ {"version":3,"file":"time-ago-formatted.pipe.js","sourceRoot":"","sources":["../../src/pipes/time-ago-formatted.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAgB,MAAM,eAAe,CAAC;AAClD,OAAO,EAAC,eAAe,EAAC,MAAM,+CAA+C,CAAC;AAC9E,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;;AAG1E,MAAM,OAAO,oBAAoB;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,eAAe,CAAC,gBAAgB,CAAC,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,GAAG,aAAa,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAClG,CAAC;8GAHU,oBAAoB;iEAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,cAAc,EAAI,UAAU,EAAE,IAAI,EAAC"}
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TimingPipe implements PipeTransform {
4
+ transform(time: number): string;
5
+ private initZero;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimingPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<TimingPipe, "acuteTiming", true>;
8
+ }
@@ -13,10 +13,10 @@ export class TimingPipe {
13
13
  return time < 10 ? '0' : '';
14
14
  }
15
15
  static ɵfac = function TimingPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TimingPipe)(); };
16
- static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteTiming", type: TimingPipe, pure: true });
16
+ static ɵpipe = i0.ɵɵdefinePipe({ name: "acuteTiming", type: TimingPipe, pure: true, standalone: true });
17
17
  }
18
18
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimingPipe, [{
19
19
  type: Pipe,
20
- args: [{ name: 'acuteTiming' }]
20
+ args: [{ name: 'acuteTiming', standalone: true }]
21
21
  }], null, null); })();
22
22
  //# sourceMappingURL=timing.pipe.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"timing.pipe.js","sourceRoot":"","sources":["../../src/pipes/timing.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,UAAU;IACrB,SAAS,CAAC,IAAY;QACpB,IAAI,IAAI,EAAE,CAAC;YACT,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC;YACtC,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC;YACtC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,OAAO,EAAE,CAAC;QACnF,CAAC;QAED,OAAO,OAAO,CAAC;IACjB,CAAC;IAEO,QAAQ,CAAC,IAAY;QAC3B,OAAO,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;IAC9B,CAAC;oGAbU,UAAU;gEAAV,UAAU;;iFAAV,UAAU;cADtB,IAAI;eAAC,EAAE,IAAI,EAAE,aAAa,EAAE"}
1
+ {"version":3,"file":"timing.pipe.js","sourceRoot":"","sources":["../../src/pipes/timing.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,UAAU;IACrB,SAAS,CAAC,IAAY;QACpB,IAAI,IAAI,EAAE,CAAC;YACT,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC;YACtC,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC;YACtC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,OAAO,EAAE,CAAC;QACnF,CAAC;QAED,OAAO,OAAO,CAAC;IACjB,CAAC;IAEO,QAAQ,CAAC,IAAY;QAC3B,OAAO,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;IAC9B,CAAC;oGAbU,UAAU;gEAAV,UAAU;;iFAAV,UAAU;cADtB,IAAI;eAAC,EAAE,IAAI,EAAE,aAAa,EAAI,UAAU,EAAE,IAAI,EAAC"}
@@ -0,0 +1,12 @@
1
+ import { Router } from '@angular/router';
2
+ import * as i0 from "@angular/core";
3
+ export declare class GoogleAnalyticsService {
4
+ private router;
5
+ private static readonly IS_PROD;
6
+ constructor(router: Router);
7
+ initialize(): void;
8
+ private onRouteChange;
9
+ event(action: string, eventCategory?: string, eventLabel?: string, value?: string): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoogleAnalyticsService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<GoogleAnalyticsService>;
12
+ }
@@ -0,0 +1,17 @@
1
+ import { DialogService } from 'primeng/dynamicdialog';
2
+ import { MessageService } from 'primeng/api';
3
+ import { GraphqlRatchet } from '@bitblit/ratchet-graphql/graphql/graphql-ratchet';
4
+ import { AuthorizationStyle } from "@bitblit/ratchet-graphql/graphql/authorization-style";
5
+ import * as i0 from "@angular/core";
6
+ export declare class GraphqlQueryService {
7
+ private graphqlRatchet;
8
+ private dialogService;
9
+ private messageService;
10
+ constructor(graphqlRatchet: GraphqlRatchet, dialogService: DialogService, messageService: MessageService);
11
+ executeQuery<T>(queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
12
+ executeQueryWithBlock<T>(blockMessage: string, queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
13
+ executeMutate<T>(queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
14
+ executeMutateWithBlock<T>(blockMessage: string, queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<GraphqlQueryService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<GraphqlQueryService>;
17
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare function storageFinder(): Storage | null;
3
+ export declare class LocalStorageService<T> {
4
+ private static readonly APP_NAME;
5
+ get storageReady(): boolean;
6
+ clear(): void;
7
+ update(value: T): T;
8
+ fetch(): T;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageService<any>, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageService<any>>;
11
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class WindowRefService {
3
+ nativeWindow(): Window;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowRefService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<WindowRefService>;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitblit/ngx-acute-common",
3
- "version": "5.0.518-alpha",
3
+ "version": "5.0.519-alpha",
4
4
  "description": "Library for using angular",
5
5
  "module": "lib/esm2022/ngx-acute-common.mjs",
6
6
  "types": "lib/esm2022/index.d.ts",
@@ -32,7 +32,7 @@
32
32
  "@angular/platform-browser": "18.2.8",
33
33
  "@angular/platform-browser-dynamic": "18.2.8",
34
34
  "@angular/router": "18.2.8",
35
- "@bitblit/ratchet-common": "5.0.518-alpha",
35
+ "@bitblit/ratchet-common": "5.0.519-alpha",
36
36
  "primeflex": "3.3.1",
37
37
  "primeicons": "7.0.0",
38
38
  "primeng": "17.18.11",
@@ -48,7 +48,7 @@
48
48
  "@angular/platform-browser": "^18.2.8",
49
49
  "@angular/platform-browser-dynamic": "^18.2.8",
50
50
  "@angular/router": "^18.2.8",
51
- "@bitblit/ratchet-common": "5.0.518-alpha",
51
+ "@bitblit/ratchet-common": "5.0.519-alpha",
52
52
  "primeflex": "3.3.1",
53
53
  "primeicons": "7.0.0",
54
54
  "primeng": "17.18.11",
@@ -57,6 +57,6 @@
57
57
  },
58
58
  "devDependencies": {
59
59
  "@angular/compiler-cli": "18.2.8",
60
- "@bitblit/ratchet-node-only": "5.0.518-alpha"
60
+ "@bitblit/ratchet-node-only": "5.0.519-alpha"
61
61
  }
62
62
  }
@@ -1,94 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { AsyncPipe, CommonModule, NgIf } from "@angular/common";
3
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
4
- import { RouterModule } from '@angular/router';
5
- import { AlertComponent } from './components/dialogs/alert/alert.component';
6
- import { BlockUiComponent } from './components/dialogs/block-ui/block-ui.component';
7
- import { CapitalizePipe } from './pipes/capitalize.pipe';
8
- import { DollarFormattedPipe } from './pipes/dollar-formatted.pipe';
9
- import { MapValuesPipe } from './pipes/map-values.pipe';
10
- import { NumberWithCommasPipe } from './pipes/number-with-commas.pipe';
11
- import { OrderByPipe } from './pipes/order-by.pipe';
12
- import { PercentFormattedPipe } from './pipes/percent-formatted.pipe';
13
- import { PluralPipe } from './pipes/plural.pipe';
14
- import { RoundPipe } from './pipes/round.pipe';
15
- import { TimeAgoFormattedPipe } from './pipes/time-ago-formatted.pipe';
16
- import { TimingPipe } from './pipes/timing.pipe';
17
- import { GoogleAnalyticsService } from './services/google-analytics.service';
18
- import { GraphqlQueryService } from './services/graphql-query.service';
19
- import { LocalStorageService } from './services/local-storage.service';
20
- import { WindowRefService } from './services/window-ref.service';
21
- import { ProgressSpinnerModule } from "primeng/progressspinner";
22
- import * as i0 from "@angular/core";
23
- const components = [
24
- AlertComponent,
25
- BlockUiComponent,
26
- CapitalizePipe,
27
- DollarFormattedPipe,
28
- MapValuesPipe,
29
- NumberWithCommasPipe,
30
- OrderByPipe,
31
- PercentFormattedPipe,
32
- PluralPipe,
33
- RoundPipe,
34
- TimeAgoFormattedPipe,
35
- TimingPipe
36
- ];
37
- export class AcuteCommonModule {
38
- static ɵfac = function AcuteCommonModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AcuteCommonModule)(); };
39
- static ɵmod = i0.ɵɵdefineNgModule({ type: AcuteCommonModule });
40
- static ɵinj = i0.ɵɵdefineInjector({ providers: [GoogleAnalyticsService,
41
- GraphqlQueryService,
42
- LocalStorageService,
43
- WindowRefService], imports: [CommonModule,
44
- FormsModule,
45
- ReactiveFormsModule,
46
- RouterModule,
47
- ProgressSpinnerModule] });
48
- }
49
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AcuteCommonModule, [{
50
- type: NgModule,
51
- args: [{
52
- imports: [
53
- CommonModule,
54
- FormsModule,
55
- ReactiveFormsModule,
56
- RouterModule,
57
- NgIf, AsyncPipe, ProgressSpinnerModule
58
- ],
59
- declarations: [...components],
60
- exports: [...components],
61
- providers: [GoogleAnalyticsService,
62
- GraphqlQueryService,
63
- LocalStorageService,
64
- WindowRefService]
65
- }]
66
- }], null, null); })();
67
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AcuteCommonModule, { declarations: [AlertComponent,
68
- BlockUiComponent,
69
- CapitalizePipe,
70
- DollarFormattedPipe,
71
- MapValuesPipe,
72
- NumberWithCommasPipe,
73
- OrderByPipe,
74
- PercentFormattedPipe,
75
- PluralPipe,
76
- RoundPipe,
77
- TimeAgoFormattedPipe,
78
- TimingPipe], imports: [CommonModule,
79
- FormsModule,
80
- ReactiveFormsModule,
81
- RouterModule,
82
- NgIf, AsyncPipe, ProgressSpinnerModule], exports: [AlertComponent,
83
- BlockUiComponent,
84
- CapitalizePipe,
85
- DollarFormattedPipe,
86
- MapValuesPipe,
87
- NumberWithCommasPipe,
88
- OrderByPipe,
89
- PercentFormattedPipe,
90
- PluralPipe,
91
- RoundPipe,
92
- TimeAgoFormattedPipe,
93
- TimingPipe] }); })();
94
- //# sourceMappingURL=acute-common.module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"acute-common.module.js","sourceRoot":"","sources":["../src/acute-common.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAC,cAAc,EAAC,MAAM,4CAA4C,CAAC;AAC1E,OAAO,EAAC,gBAAgB,EAAC,MAAM,kDAAkD,CAAC;AAElF,OAAO,EAAC,cAAc,EAAC,MAAO,yBAAyB,CAAC;AACxD,OAAO,EAAC,mBAAmB,EAAC,MAAO,+BAA+B,CAAC;AACnE,OAAO,EAAC,aAAa,EAAC,MAAO,yBAAyB,CAAC;AACvD,OAAO,EAAC,oBAAoB,EAAC,MAAO,iCAAiC,CAAC;AACtE,OAAO,EAAC,WAAW,EAAC,MAAO,uBAAuB,CAAC;AACnD,OAAO,EAAC,oBAAoB,EAAC,MAAO,gCAAgC,CAAC;AACrE,OAAO,EAAC,UAAU,EAAC,MAAO,qBAAqB,CAAC;AAChD,OAAO,EAAC,SAAS,EAAC,MAAO,oBAAoB,CAAC;AAC9C,OAAO,EAAC,oBAAoB,EAAC,MAAO,iCAAiC,CAAC;AACtE,OAAO,EAAC,UAAU,EAAC,MAAO,qBAAqB,CAAC;AAEhD,OAAO,EAAC,sBAAsB,EAAC,MAAO,qCAAqC,CAAC;AAC5E,OAAO,EAAC,mBAAmB,EAAC,MAAO,kCAAkC,CAAC;AACtE,OAAO,EAAC,mBAAmB,EAAC,MAAO,kCAAkC,CAAC;AACtE,OAAO,EAAC,gBAAgB,EAAC,MAAO,+BAA+B,CAAC;AAChE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;;AAEhE,MAAM,UAAU,GAAG;IACjB,cAAc;IACd,gBAAgB;IAChB,cAAc;IACd,mBAAmB;IACnB,aAAa;IACb,oBAAoB;IACpB,WAAW;IACX,oBAAoB;IACpB,UAAU;IACV,SAAS;IACT,oBAAoB;IACpB,UAAU;CACX,CAAC;AAkBF,MAAM,OAAO,iBAAiB;2GAAjB,iBAAiB;8CAAjB,iBAAiB;mDALjB,CAAC,sBAAsB;YAChC,mBAAmB;YACnB,mBAAmB;YACnB,gBAAgB,CAAC,YAZjB,YAAY;YACZ,WAAW;YACX,mBAAmB;YACnB,YAAY;YACI,qBAAqB;;iFAU5B,iBAAiB;cAhB7B,QAAQ;eAAC;gBACR,OAAO,EAAE;oBACP,YAAY;oBACZ,WAAW;oBACX,mBAAmB;oBACnB,YAAY;oBACb,IAAI,EAAE,SAAS,EAAE,qBAAqB;iBAExC;gBACC,YAAY,EAAE,CAAC,GAAG,UAAU,CAAC;gBAC7B,OAAO,EAAE,CAAC,GAAG,UAAU,CAAC;gBACxB,SAAS,EAAE,CAAC,sBAAsB;oBAChC,mBAAmB;oBACnB,mBAAmB;oBACnB,gBAAgB,CAAC;aACpB;;wFACY,iBAAiB,mBA9B5B,cAAc;QACd,gBAAgB;QAChB,cAAc;QACd,mBAAmB;QACnB,aAAa;QACb,oBAAoB;QACpB,WAAW;QACX,oBAAoB;QACpB,UAAU;QACV,SAAS;QACT,oBAAoB;QACpB,UAAU,aAKR,YAAY;QACZ,WAAW;QACX,mBAAmB;QACnB,YAAY;QACb,IAAI,EAAE,SAAS,EAAE,qBAAqB,aApBvC,cAAc;QACd,gBAAgB;QAChB,cAAc;QACd,mBAAmB;QACnB,aAAa;QACb,oBAAoB;QACpB,WAAW;QACX,oBAAoB;QACpB,UAAU;QACV,SAAS;QACT,oBAAoB;QACpB,UAAU"}