@bitblit/ngx-acute-common 5.0.543-alpha → 5.0.545-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.
- package/License.txt +1 -1
- package/lib/components/dynamic-404-helper/dynamic-404-helper.component.d.ts +12 -0
- package/lib/components/dynamic-404-helper/dynamic-404-helper.component.js +76 -0
- package/lib/components/dynamic-404-helper/dynamic-404-helper.component.js.map +1 -0
- package/lib/pipes/capitalize.pipe.d.ts +1 -1
- package/lib/pipes/capitalize.pipe.js +2 -2
- package/lib/pipes/capitalize.pipe.js.map +1 -1
- package/lib/pipes/dollar-formatted.pipe.d.ts +1 -1
- package/lib/pipes/dollar-formatted.pipe.js +2 -2
- package/lib/pipes/dollar-formatted.pipe.js.map +1 -1
- package/lib/pipes/map-values.pipe.d.ts +1 -1
- package/lib/pipes/map-values.pipe.js +2 -2
- package/lib/pipes/map-values.pipe.js.map +1 -1
- package/lib/pipes/number-with-commas.pipe.d.ts +1 -1
- package/lib/pipes/number-with-commas.pipe.js +2 -2
- package/lib/pipes/number-with-commas.pipe.js.map +1 -1
- package/lib/pipes/order-by.pipe.d.ts +1 -1
- package/lib/pipes/order-by.pipe.js +2 -2
- package/lib/pipes/order-by.pipe.js.map +1 -1
- package/lib/pipes/percent-formatted.pipe.d.ts +1 -1
- package/lib/pipes/percent-formatted.pipe.js +2 -2
- package/lib/pipes/percent-formatted.pipe.js.map +1 -1
- package/lib/pipes/plural.pipe.d.ts +1 -1
- package/lib/pipes/plural.pipe.js +2 -2
- package/lib/pipes/plural.pipe.js.map +1 -1
- package/lib/pipes/round.pipe.d.ts +1 -1
- package/lib/pipes/round.pipe.js +2 -2
- package/lib/pipes/round.pipe.js.map +1 -1
- package/lib/pipes/time-ago-formatted.pipe.d.ts +1 -1
- package/lib/pipes/time-ago-formatted.pipe.js +2 -2
- package/lib/pipes/time-ago-formatted.pipe.js.map +1 -1
- package/lib/pipes/timing.pipe.d.ts +1 -1
- package/lib/pipes/timing.pipe.js +2 -2
- package/lib/pipes/timing.pipe.js.map +1 -1
- package/package.json +4 -4
package/License.txt
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class Dynamic404HelperComponent implements OnInit {
|
|
5
|
+
router: Router;
|
|
6
|
+
redirectState: string;
|
|
7
|
+
historicalUrl: any;
|
|
8
|
+
constructor(router: Router);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Dynamic404HelperComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Dynamic404HelperComponent, "ngx-acute-common-dynamic-404-helper", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { Router, RouterModule } from '@angular/router';
|
|
3
|
+
import { Logger } from '@bitblit/ratchet-common/logger/logger';
|
|
4
|
+
import { FormsModule } from "@angular/forms";
|
|
5
|
+
import { CommonModule } from "@angular/common";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/router";
|
|
8
|
+
import * as i2 from "@angular/common";
|
|
9
|
+
function Dynamic404HelperComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementStart(0, "div", 2)(1, "div", 3)(2, "h3");
|
|
11
|
+
i0.ɵɵtext(3, "Page Not Found");
|
|
12
|
+
i0.ɵɵelementEnd()();
|
|
13
|
+
i0.ɵɵelementStart(4, "div", 4)(5, "h4");
|
|
14
|
+
i0.ɵɵtext(6, "Oops!");
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
i0.ɵɵelementStart(7, "p");
|
|
17
|
+
i0.ɵɵtext(8, "We can't find the page you are trying to reach - please ");
|
|
18
|
+
i0.ɵɵelementStart(9, "a", 5);
|
|
19
|
+
i0.ɵɵtext(10, " go back");
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
i0.ɵɵtext(11, " and try again.");
|
|
22
|
+
i0.ɵɵelementEnd()()();
|
|
23
|
+
} }
|
|
24
|
+
function Dynamic404HelperComponent_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
25
|
+
i0.ɵɵelementStart(0, "div", 2)(1, "div", 3)(2, "h3");
|
|
26
|
+
i0.ɵɵtext(3, "Redirecting");
|
|
27
|
+
i0.ɵɵelementEnd()();
|
|
28
|
+
i0.ɵɵelementStart(4, "div", 4)(5, "p");
|
|
29
|
+
i0.ɵɵtext(6, "Sending you to the new version of that page...");
|
|
30
|
+
i0.ɵɵelementEnd()()();
|
|
31
|
+
} }
|
|
32
|
+
export class Dynamic404HelperComponent {
|
|
33
|
+
router;
|
|
34
|
+
redirectState = null;
|
|
35
|
+
historicalUrl = {
|
|
36
|
+
'/faq': '/help-faq-general',
|
|
37
|
+
};
|
|
38
|
+
constructor(router) {
|
|
39
|
+
this.router = router;
|
|
40
|
+
}
|
|
41
|
+
ngOnInit() {
|
|
42
|
+
const oldTarget = location.pathname;
|
|
43
|
+
let currentTarget = oldTarget;
|
|
44
|
+
if (currentTarget && currentTarget.toLowerCase().endsWith('.html')) {
|
|
45
|
+
currentTarget = oldTarget.substring(0, oldTarget.length - 5);
|
|
46
|
+
}
|
|
47
|
+
if (currentTarget && this.historicalUrl[currentTarget]) {
|
|
48
|
+
currentTarget = this.historicalUrl[currentTarget];
|
|
49
|
+
}
|
|
50
|
+
if (currentTarget != oldTarget) {
|
|
51
|
+
this.redirectState = 'REDIR';
|
|
52
|
+
Logger.warn('Redirecting ' + oldTarget + ' to ' + currentTarget);
|
|
53
|
+
window.location.pathname = currentTarget;
|
|
54
|
+
}
|
|
55
|
+
else {
|
|
56
|
+
this.redirectState = 'NO';
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
static ɵfac = function Dynamic404HelperComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || Dynamic404HelperComponent)(i0.ɵɵdirectiveInject(i1.Router)); };
|
|
60
|
+
static ɵcmp = i0.ɵɵdefineComponent({ type: Dynamic404HelperComponent, selectors: [["ngx-acute-common-dynamic-404-helper"]], standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 3, vars: 2, consts: [[1, "container"], ["class", "row", 4, "ngIf"], [1, "row"], [1, "col-sm-2"], [1, "col-sm-10"], ["routerLink", "/secure/dashboard"]], template: function Dynamic404HelperComponent_Template(rf, ctx) { if (rf & 1) {
|
|
61
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
62
|
+
i0.ɵɵtemplate(1, Dynamic404HelperComponent_div_1_Template, 12, 0, "div", 1)(2, Dynamic404HelperComponent_div_2_Template, 7, 0, "div", 1);
|
|
63
|
+
i0.ɵɵelementEnd();
|
|
64
|
+
} if (rf & 2) {
|
|
65
|
+
i0.ɵɵadvance();
|
|
66
|
+
i0.ɵɵproperty("ngIf", ctx.redirectState !== "REDIR");
|
|
67
|
+
i0.ɵɵadvance();
|
|
68
|
+
i0.ɵɵproperty("ngIf", ctx.redirectState === "REDIR");
|
|
69
|
+
} }, dependencies: [RouterModule, i1.RouterLink, FormsModule, CommonModule, i2.NgIf], encapsulation: 2 });
|
|
70
|
+
}
|
|
71
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(Dynamic404HelperComponent, [{
|
|
72
|
+
type: Component,
|
|
73
|
+
args: [{ selector: 'ngx-acute-common-dynamic-404-helper', standalone: true, imports: [RouterModule, FormsModule, CommonModule], template: "<div class=\"container\">\n\n <div class=\"row\" *ngIf=\"redirectState!=='REDIR'\">\n <div class=\"col-sm-2\">\n <h3>Page Not Found</h3>\n </div>\n <div class=\"col-sm-10\">\n <h4>Oops!</h4>\n <p>We can't find the page you are trying to reach - please <a routerLink=\"/secure/dashboard\"> go back</a> and try again.</p>\n </div>\n </div>\n\n <div class=\"row\" *ngIf=\"redirectState==='REDIR'\">\n <div class=\"col-sm-2\">\n <h3>Redirecting</h3>\n </div>\n <div class=\"col-sm-10\">\n <p>Sending you to the new version of that page...</p>\n </div>\n </div>\n\n</div>\n" }]
|
|
74
|
+
}], () => [{ type: i1.Router }], null); })();
|
|
75
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(Dynamic404HelperComponent, { className: "Dynamic404HelperComponent", filePath: "components/dynamic-404-helper/dynamic-404-helper.component.ts", lineNumber: 14 }); })();
|
|
76
|
+
//# sourceMappingURL=dynamic-404-helper.component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dynamic-404-helper.component.js","sourceRoot":"","sources":["../../../src/components/dynamic-404-helper/dynamic-404-helper.component.ts","../../../src/components/dynamic-404-helper/dynamic-404-helper.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAU,MAAM,eAAe,CAAC;AAClD,OAAO,EAAC,MAAM,EAAE,YAAY,EAAC,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAC/D,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAC,YAAY,EAAC,MAAM,iBAAiB,CAAC;;;;;ICAvC,AADF,AADF,8BAAiD,aACzB,SAChB;IAAA,8BAAc;IACpB,AADoB,iBAAK,EACnB;IAEJ,AADF,8BAAuB,SACjB;IAAA,qBAAK;IAAA,iBAAK;IACd,yBAAG;IAAA,wEAAwD;IAAA,4BAAkC;IAAC,yBAAO;IAAA,iBAAI;IAAC,gCAAc;IAE5H,AADE,AAD0H,iBAAI,EACxH,EACF;;;IAIF,AADF,AADF,8BAAiD,aACzB,SAChB;IAAA,2BAAW;IACjB,AADiB,iBAAK,EAChB;IAEJ,AADF,8BAAuB,QAClB;IAAA,8DAA8C;IAErD,AADE,AADmD,iBAAI,EACjD,EACF;;ADNR,MAAM,OAAO,yBAAyB;IAQjB;IAPnB,aAAa,GAAW,IAAI,CAAC;IAG7B,aAAa,GAAQ;QACnB,MAAM,EAAE,mBAAmB;KAC5B,CAAC;IAEF,YAAmB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;IAErC,QAAQ;QAEN,MAAM,SAAS,GAAG,QAAQ,CAAC,QAAQ,CAAC;QACpC,IAAI,aAAa,GAAG,SAAS,CAAC;QAG9B,IAAI,aAAa,IAAI,aAAa,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC;YACnE,aAAa,GAAG,SAAS,CAAC,SAAS,CAAC,CAAC,EAAE,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QAC/D,CAAC;QAGD,IAAI,aAAa,IAAI,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,EAAE,CAAC;YACvD,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;QACpD,CAAC;QAGD,IAAI,aAAa,IAAI,SAAS,EAAE,CAAC;YAC/B,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC;YAC7B,MAAM,CAAC,IAAI,CAAC,cAAc,GAAG,SAAS,GAAG,MAAM,GAAG,aAAa,CAAC,CAAC;YACjE,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,aAAa,CAAC;QAC3C,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;QAC5B,CAAC;IACH,CAAC;mHAjCU,yBAAyB;+CAAzB,yBAAyB;YCbtC,8BAAuB;YAYrB,AAVA,2EAAiD,6DAUA;YASnD,iBAAM;;YAnBc,cAA6B;YAA7B,oDAA6B;YAU7B,cAA6B;YAA7B,oDAA6B;4BDFpC,YAAY,iBAAE,WAAW,EAAE,YAAY;;iFAGvC,yBAAyB;cAPrC,SAAS;2BACE,qCAAqC,cAEnC,IAAI,WACN,CAAC,YAAY,EAAE,WAAW,EAAE,YAAY,CAAC;;kFAGxC,yBAAyB"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class CapitalizePipe implements PipeTransform {
|
|
4
4
|
transform(input: string): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizePipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizePipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizePipe, "ngx-acute-capitalize", true>;
|
|
7
7
|
}
|
|
@@ -5,10 +5,10 @@ export class CapitalizePipe {
|
|
|
5
5
|
return input && input.length ? input.charAt(0).toUpperCase() + input.slice(1).toLowerCase() : input;
|
|
6
6
|
}
|
|
7
7
|
static ɵfac = function CapitalizePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CapitalizePipe)(); };
|
|
8
|
-
static ɵpipe = i0.ɵɵdefinePipe({ name: "
|
|
8
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-capitalize", type: CapitalizePipe, pure: true, standalone: true });
|
|
9
9
|
}
|
|
10
10
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CapitalizePipe, [{
|
|
11
11
|
type: Pipe,
|
|
12
|
-
args: [{ name: '
|
|
12
|
+
args: [{ name: 'ngx-acute-capitalize', standalone: true }]
|
|
13
13
|
}], null, null); })();
|
|
14
14
|
//# 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;IACzB,SAAS,CAAC,KAAa;QACrB,OAAO,KAAK,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;IACtG,CAAC;wGAHU,cAAc;
|
|
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;IACzB,SAAS,CAAC,KAAa;QACrB,OAAO,KAAK,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;IACtG,CAAC;wGAHU,cAAc;yEAAd,cAAc;;iFAAd,cAAc;cAD1B,IAAI;eAAC,EAAE,IAAI,EAAE,sBAAsB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class DollarFormattedPipe implements PipeTransform {
|
|
4
4
|
transform(input: number): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<DollarFormattedPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<DollarFormattedPipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DollarFormattedPipe, "ngx-acute-dollars", true>;
|
|
7
7
|
}
|
|
@@ -7,10 +7,10 @@ export class DollarFormattedPipe {
|
|
|
7
7
|
return rval;
|
|
8
8
|
}
|
|
9
9
|
static ɵfac = function DollarFormattedPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DollarFormattedPipe)(); };
|
|
10
|
-
static ɵpipe = i0.ɵɵdefinePipe({ name: "
|
|
10
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-dollars", type: DollarFormattedPipe, pure: true, standalone: true });
|
|
11
11
|
}
|
|
12
12
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DollarFormattedPipe, [{
|
|
13
13
|
type: Pipe,
|
|
14
|
-
args: [{ name: '
|
|
14
|
+
args: [{ name: 'ngx-acute-dollars', standalone: true }]
|
|
15
15
|
}], null, null); })();
|
|
16
16
|
//# 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,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;;AAGhF,MAAM,OAAO,mBAAmB;IAC9B,SAAS,CAAC,KAAa;QACrB,MAAM,IAAI,GAAW,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,eAAe,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;QAC1G,OAAO,IAAI,CAAC;IACd,CAAC;6GAJU,mBAAmB;
|
|
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,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;;AAGhF,MAAM,OAAO,mBAAmB;IAC9B,SAAS,CAAC,KAAa;QACrB,MAAM,IAAI,GAAW,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,eAAe,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;QAC1G,OAAO,IAAI,CAAC;IACd,CAAC;6GAJU,mBAAmB;sEAAnB,mBAAmB;;iFAAnB,mBAAmB;cAD/B,IAAI;eAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class MapValuesPipe implements PipeTransform {
|
|
4
4
|
transform(value: any, args?: any[]): any[];
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapValuesPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<MapValuesPipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MapValuesPipe, "ngx-acute-map-values", true>;
|
|
7
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: "
|
|
17
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-map-values", type: MapValuesPipe, pure: true, standalone: true });
|
|
18
18
|
}
|
|
19
19
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MapValuesPipe, [{
|
|
20
20
|
type: Pipe,
|
|
21
|
-
args: [{ name: '
|
|
21
|
+
args: [{ name: 'ngx-acute-map-values', 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;
|
|
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;yEAAb,aAAa;;iFAAb,aAAa;cADzB,IAAI;eAAC,EAAE,IAAI,EAAE,sBAAsB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class NumberWithCommasPipe implements PipeTransform {
|
|
4
4
|
transform(input: number): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberWithCommasPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<NumberWithCommasPipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<NumberWithCommasPipe, "ngx-acute-number-with-commas", true>;
|
|
7
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: "
|
|
8
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-number-with-commas", type: NumberWithCommasPipe, pure: true, standalone: true });
|
|
9
9
|
}
|
|
10
10
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NumberWithCommasPipe, [{
|
|
11
11
|
type: Pipe,
|
|
12
|
-
args: [{ name: '
|
|
12
|
+
args: [{ name: 'ngx-acute-number-with-commas', 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;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAC/C,CAAC;8GAHU,oBAAoB;
|
|
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;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAC/C,CAAC;8GAHU,oBAAoB;iFAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,8BAA8B,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -4,5 +4,5 @@ export declare class OrderByPipe implements PipeTransform {
|
|
|
4
4
|
static _orderByComparator(a: any, b: any): number;
|
|
5
5
|
transform(input: any, [config]: [string?]): any;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<OrderByPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<OrderByPipe, "
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<OrderByPipe, "ngx-acute-order-by", true>;
|
|
8
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: "
|
|
53
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-order-by", type: OrderByPipe, pure: false, standalone: true });
|
|
54
54
|
}
|
|
55
55
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OrderByPipe, [{
|
|
56
56
|
type: Pipe,
|
|
57
|
-
args: [{ name: '
|
|
57
|
+
args: [{ name: 'ngx-acute-order-by', 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":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;;AAGpD,MAAM,OAAO,WAAW;IACtB,MAAM,CAAC,kBAAkB,CAAC,CAAM,EAAE,CAAM;QACtC,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC;YAEjF,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAAE,OAAO,CAAC,CAAC,CAAC;YACjE,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;gBAAE,OAAO,CAAC,CAAC;QAClE,CAAC;aAAM,CAAC;YAEN,IAAI,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;gBAAE,OAAO,CAAC,CAAC,CAAC;YAC7C,IAAI,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;gBAAE,OAAO,CAAC,CAAC;QAC9C,CAAC;QAED,OAAO,CAAC,CAAC;IACX,CAAC;IAED,SAAS,CAAC,KAAU,EAAE,CAAC,MAAM,GAAG,GAAG,CAAC;QAClC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;YAAE,OAAO,KAAK,CAAC;QAExC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,MAAM,IAAI,CAAC,CAAC,EAAE,CAAC;YAC5E,MAAM,eAAe,GAAW,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC5E,MAAM,IAAI,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC;YAGjD,IAAI,CAAC,eAAe,IAAI,eAAe,IAAI,GAAG,IAAI,eAAe,IAAI,GAAG,EAAE,CAAC;gBACzE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC;YACvD,CAAC;iBAAM,CAAC;gBACN,MAAM,QAAQ,GACZ,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,IAAI,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC;gBAE3H,OAAO,KAAK,CAAC,IAAI,CAAC,UAAU,CAAM,EAAE,CAAM;oBACxC,OAAO,CAAC,IAAI;wBACV,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC;wBAC1D,CAAC,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAChE,CAAC,CAAC,CAAC;YACL,CAAC;QACH,CAAC;aAAM,CAAC;YAEN,OAAO,KAAK,CAAC,IAAI,CAAC,UAAU,CAAM,EAAE,CAAM;gBACxC,KAAK,IAAI,CAAC,GAAW,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC/C,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC;oBAC3C,MAAM,QAAQ,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;oBAElH,MAAM,UAAU,GAAG,CAAC,IAAI;wBACtB,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC;wBAC1D,CAAC,CAAC,CAAC,WAAW,CAAC,kBAAkB,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC;oBAG9D,IAAI,UAAU,IAAI,CAAC;wBAAE,OAAO,UAAU,CAAC;gBACzC,CAAC;gBAED,OAAO,CAAC,CAAC;YACX,CAAC,CAAC,CAAC;QACL,CAAC;IACH,CAAC;qGArDU,WAAW;uEAAX,WAAW;;iFAAX,WAAW;cADvB,IAAI;eAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,IAAI,EAAE,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class PercentFormattedPipe implements PipeTransform {
|
|
4
4
|
transform(input: number): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<PercentFormattedPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<PercentFormattedPipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PercentFormattedPipe, "ngx-acute-percent", true>;
|
|
7
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: "
|
|
9
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-percent", type: PercentFormattedPipe, pure: true, standalone: true });
|
|
10
10
|
}
|
|
11
11
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PercentFormattedPipe, [{
|
|
12
12
|
type: Pipe,
|
|
13
|
-
args: [{ name: '
|
|
13
|
+
args: [{ name: 'ngx-acute-percent', 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,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;;AAG5E,MAAM,OAAO,oBAAoB;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,aAAa,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC;8GAHU,oBAAoB;
|
|
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,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;;AAG5E,MAAM,OAAO,oBAAoB;IAC/B,SAAS,CAAC,KAAa;QACrB,OAAO,aAAa,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC;8GAHU,oBAAoB;sEAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class PluralPipe implements PipeTransform {
|
|
4
4
|
transform(input: number, label: string, pluralLabel?: string): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<PluralPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<PluralPipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PluralPipe, "ngx-acute-plural", true>;
|
|
7
7
|
}
|
package/lib/pipes/plural.pipe.js
CHANGED
|
@@ -6,10 +6,10 @@ export class PluralPipe {
|
|
|
6
6
|
return input === 1 ? `${input} ${label}` : pluralLabel ? `${input} ${pluralLabel}` : `${input} ${label}s`;
|
|
7
7
|
}
|
|
8
8
|
static ɵfac = function PluralPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || PluralPipe)(); };
|
|
9
|
-
static ɵpipe = i0.ɵɵdefinePipe({ name: "
|
|
9
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-plural", type: PluralPipe, pure: true, standalone: true });
|
|
10
10
|
}
|
|
11
11
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PluralPipe, [{
|
|
12
12
|
type: Pipe,
|
|
13
|
-
args: [{ name: '
|
|
13
|
+
args: [{ name: 'ngx-acute-plural', standalone: true }]
|
|
14
14
|
}], null, null); })();
|
|
15
15
|
//# 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;IACrB,SAAS,CAAC,KAAa,EAAE,KAAa,EAAE,cAAsB,EAAE;QAC9D,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QACnB,OAAO,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,WAAW,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,GAAG,CAAC;IAC5G,CAAC;oGAJU,UAAU;
|
|
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;IACrB,SAAS,CAAC,KAAa,EAAE,KAAa,EAAE,cAAsB,EAAE;QAC9D,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;QACnB,OAAO,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,WAAW,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,KAAK,GAAG,CAAC;IAC5G,CAAC;oGAJU,UAAU;qEAAV,UAAU;;iFAAV,UAAU;cADtB,IAAI;eAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class RoundPipe implements PipeTransform {
|
|
4
4
|
transform(input: number): number;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "ngx-acute-round", true>;
|
|
7
7
|
}
|
package/lib/pipes/round.pipe.js
CHANGED
|
@@ -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: "
|
|
8
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-round", type: RoundPipe, pure: true, standalone: true });
|
|
9
9
|
}
|
|
10
10
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RoundPipe, [{
|
|
11
11
|
type: Pipe,
|
|
12
|
-
args: [{ name: '
|
|
12
|
+
args: [{ name: 'ngx-acute-round', 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;IACpB,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAC3B,CAAC;mGAHU,SAAS
|
|
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;IACpB,SAAS,CAAC,KAAa;QACrB,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAC3B,CAAC;mGAHU,SAAS;oEAAT,SAAS;;iFAAT,SAAS;cADrB,IAAI;eAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class TimeAgoFormattedPipe implements PipeTransform {
|
|
4
4
|
transform(input: number): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimeAgoFormattedPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<TimeAgoFormattedPipe, "
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TimeAgoFormattedPipe, "ngx-acute-time-ago", true>;
|
|
7
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: "
|
|
10
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-time-ago", type: TimeAgoFormattedPipe, pure: true, standalone: true });
|
|
11
11
|
}
|
|
12
12
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimeAgoFormattedPipe, [{
|
|
13
13
|
type: Pipe,
|
|
14
|
-
args: [{ name: '
|
|
14
|
+
args: [{ name: 'ngx-acute-time-ago', 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,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;AAChF,OAAO,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;;AAG5E,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;
|
|
1
|
+
{"version":3,"file":"time-ago-formatted.pipe.js","sourceRoot":"","sources":["../../src/pipes/time-ago-formatted.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAiB,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;AAChF,OAAO,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;;AAG5E,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;uEAApB,oBAAoB;;iFAApB,oBAAoB;cADhC,IAAI;eAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
|
@@ -4,5 +4,5 @@ export declare class TimingPipe implements PipeTransform {
|
|
|
4
4
|
transform(time: number): string;
|
|
5
5
|
private initZero;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimingPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<TimingPipe, "
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TimingPipe, "ngx-acute-timing", true>;
|
|
8
8
|
}
|
package/lib/pipes/timing.pipe.js
CHANGED
|
@@ -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: "
|
|
16
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngx-acute-timing", type: TimingPipe, pure: true, standalone: true });
|
|
17
17
|
}
|
|
18
18
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimingPipe, [{
|
|
19
19
|
type: Pipe,
|
|
20
|
-
args: [{ name: '
|
|
20
|
+
args: [{ name: 'ngx-acute-timing', 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;
|
|
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;qEAAV,UAAU;;iFAAV,UAAU;cADtB,IAAI;eAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,UAAU,EAAE,IAAI,EAAE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitblit/ngx-acute-common",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.545-alpha",
|
|
4
4
|
"description": "Library for using angular",
|
|
5
5
|
"module": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@angular/platform-browser": "18.2.9",
|
|
44
44
|
"@angular/platform-browser-dynamic": "18.2.9",
|
|
45
45
|
"@angular/router": "18.2.9",
|
|
46
|
-
"@bitblit/ratchet-common": "5.0.
|
|
46
|
+
"@bitblit/ratchet-common": "5.0.545-alpha",
|
|
47
47
|
"primeflex": "3.3.1",
|
|
48
48
|
"primeicons": "7.0.0",
|
|
49
49
|
"primeng": "17.18.11",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@angular/platform-browser": "^18.2.9",
|
|
60
60
|
"@angular/platform-browser-dynamic": "^18.2.9",
|
|
61
61
|
"@angular/router": "^18.2.9",
|
|
62
|
-
"@bitblit/ratchet-common": "5.0.
|
|
62
|
+
"@bitblit/ratchet-common": "5.0.545-alpha",
|
|
63
63
|
"primeflex": "3.3.1",
|
|
64
64
|
"primeicons": "7.0.0",
|
|
65
65
|
"primeng": "17.18.11",
|
|
@@ -68,6 +68,6 @@
|
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@angular/compiler-cli": "18.2.9",
|
|
71
|
-
"@bitblit/ratchet-node-only": "5.0.
|
|
71
|
+
"@bitblit/ratchet-node-only": "5.0.545-alpha"
|
|
72
72
|
}
|
|
73
73
|
}
|