@bitblit/ngx-acute-common 5.0.557-alpha → 5.0.560-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/lib/components/dialogs/alert/alert.component.js +1 -1
- package/lib/components/dialogs/block-ui/block-ui.component.js +1 -1
- package/lib/components/dynamic-404-helper/dynamic-404-helper.component.js +1 -1
- package/lib/pipes/capitalize.pipe.js +1 -1
- package/lib/pipes/dollar-formatted.pipe.js +1 -1
- package/lib/pipes/map-values.pipe.js +1 -1
- package/lib/pipes/number-with-commas.pipe.js +1 -1
- package/lib/pipes/order-by.pipe.js +1 -1
- package/lib/pipes/percent-formatted.pipe.js +1 -1
- package/lib/pipes/plural.pipe.js +1 -1
- package/lib/pipes/round.pipe.js +1 -1
- package/lib/pipes/time-ago-formatted.pipe.js +1 -1
- package/lib/pipes/timing.pipe.js +1 -1
- package/package.json +25 -25
|
@@ -23,7 +23,7 @@ export class AlertComponent {
|
|
|
23
23
|
return dlg;
|
|
24
24
|
}
|
|
25
25
|
static ɵfac = function AlertComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AlertComponent)(i0.ɵɵdirectiveInject(i1.DynamicDialogConfig), i0.ɵɵdirectiveInject(i1.DynamicDialogRef)); };
|
|
26
|
-
static ɵcmp = i0.ɵɵdefineComponent({ type: AlertComponent, selectors: [["ngx-acute-common-alert"]],
|
|
26
|
+
static ɵcmp = i0.ɵɵdefineComponent({ type: AlertComponent, selectors: [["ngx-acute-common-alert"]], decls: 4, vars: 3, template: function AlertComponent_Template(rf, ctx) { if (rf & 1) {
|
|
27
27
|
i0.ɵɵelementStart(0, "div")(1, "pre");
|
|
28
28
|
i0.ɵɵtext(2);
|
|
29
29
|
i0.ɵɵpipe(3, "async");
|
|
@@ -56,7 +56,7 @@ export class BlockUiComponent {
|
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
static ɵfac = function BlockUiComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BlockUiComponent)(i0.ɵɵdirectiveInject(i1.DialogService), i0.ɵɵdirectiveInject(i1.DynamicDialogConfig)); };
|
|
59
|
-
static ɵcmp = i0.ɵɵdefineComponent({ type: BlockUiComponent, selectors: [["ngx-acute-common-block-ui"]],
|
|
59
|
+
static ɵcmp = i0.ɵɵdefineComponent({ type: BlockUiComponent, selectors: [["ngx-acute-common-block-ui"]], decls: 7, vars: 4, consts: [[2, "display", "flex", "flex-direction", "column", "justify-content", "center"], ["styleClass", "w-2rem h-2rem", "strokeWidth", "5", "fill", "var(--surface-ground)", "animationDuration", ".8s"], [4, "ngIf"]], template: function BlockUiComponent_Template(rf, ctx) { if (rf & 1) {
|
|
60
60
|
i0.ɵɵelementStart(0, "div")(1, "div", 0)(2, "h4");
|
|
61
61
|
i0.ɵɵtext(3);
|
|
62
62
|
i0.ɵɵpipe(4, "async");
|
|
@@ -57,7 +57,7 @@ export class Dynamic404HelperComponent {
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
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"]],
|
|
60
|
+
static ɵcmp = i0.ɵɵdefineComponent({ type: Dynamic404HelperComponent, selectors: [["ngx-acute-common-dynamic-404-helper"]], 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
61
|
i0.ɵɵelementStart(0, "div", 0);
|
|
62
62
|
i0.ɵɵtemplate(1, Dynamic404HelperComponent_div_1_Template, 12, 0, "div", 1)(2, Dynamic404HelperComponent_div_2_Template, 7, 0, "div", 1);
|
|
63
63
|
i0.ɵɵelementEnd();
|
|
@@ -5,7 +5,7 @@ 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: "ngxAcuteCapitalize", type: CapitalizePipe, pure: true
|
|
8
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteCapitalize", type: CapitalizePipe, pure: true });
|
|
9
9
|
}
|
|
10
10
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CapitalizePipe, [{
|
|
11
11
|
type: Pipe,
|
|
@@ -7,7 +7,7 @@ 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: "ngxAcuteDollars", type: DollarFormattedPipe, pure: true
|
|
10
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteDollars", type: DollarFormattedPipe, pure: true });
|
|
11
11
|
}
|
|
12
12
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DollarFormattedPipe, [{
|
|
13
13
|
type: Pipe,
|
|
@@ -14,7 +14,7 @@ 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: "ngxAcuteMapValues", type: MapValuesPipe, pure: true
|
|
17
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteMapValues", type: MapValuesPipe, pure: true });
|
|
18
18
|
}
|
|
19
19
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MapValuesPipe, [{
|
|
20
20
|
type: Pipe,
|
|
@@ -5,7 +5,7 @@ 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: "ngxAcuteNumberWithCommas", type: NumberWithCommasPipe, pure: true
|
|
8
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteNumberWithCommas", type: NumberWithCommasPipe, pure: true });
|
|
9
9
|
}
|
|
10
10
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NumberWithCommasPipe, [{
|
|
11
11
|
type: Pipe,
|
|
@@ -50,7 +50,7 @@ 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: "ngxAcuteOderBy", type: OrderByPipe, pure: false
|
|
53
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteOderBy", type: OrderByPipe, pure: false });
|
|
54
54
|
}
|
|
55
55
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OrderByPipe, [{
|
|
56
56
|
type: Pipe,
|
|
@@ -6,7 +6,7 @@ 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: "ngxAcutePercent", type: PercentFormattedPipe, pure: true
|
|
9
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcutePercent", type: PercentFormattedPipe, pure: true });
|
|
10
10
|
}
|
|
11
11
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PercentFormattedPipe, [{
|
|
12
12
|
type: Pipe,
|
package/lib/pipes/plural.pipe.js
CHANGED
|
@@ -6,7 +6,7 @@ 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: "ngxAcutePlural", type: PluralPipe, pure: true
|
|
9
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcutePlural", type: PluralPipe, pure: true });
|
|
10
10
|
}
|
|
11
11
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PluralPipe, [{
|
|
12
12
|
type: Pipe,
|
package/lib/pipes/round.pipe.js
CHANGED
|
@@ -5,7 +5,7 @@ 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: "ngxAcuteRound", type: RoundPipe, pure: true
|
|
8
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteRound", type: RoundPipe, pure: true });
|
|
9
9
|
}
|
|
10
10
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RoundPipe, [{
|
|
11
11
|
type: Pipe,
|
|
@@ -7,7 +7,7 @@ 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: "ngxAcuteTimeAgo", type: TimeAgoFormattedPipe, pure: true
|
|
10
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteTimeAgo", type: TimeAgoFormattedPipe, pure: true });
|
|
11
11
|
}
|
|
12
12
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimeAgoFormattedPipe, [{
|
|
13
13
|
type: Pipe,
|
package/lib/pipes/timing.pipe.js
CHANGED
|
@@ -13,7 +13,7 @@ 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: "ngxAcuteTiming", type: TimingPipe, pure: true
|
|
16
|
+
static ɵpipe = i0.ɵɵdefinePipe({ name: "ngxAcuteTiming", type: TimingPipe, pure: true });
|
|
17
17
|
}
|
|
18
18
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimingPipe, [{
|
|
19
19
|
type: Pipe,
|
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.560-alpha",
|
|
4
4
|
"description": "Library for using angular",
|
|
5
5
|
"module": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -35,39 +35,39 @@
|
|
|
35
35
|
"config": {},
|
|
36
36
|
"license": "Apache-2.0",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@angular/animations": "
|
|
39
|
-
"@angular/common": "
|
|
40
|
-
"@angular/compiler": "
|
|
41
|
-
"@angular/core": "
|
|
42
|
-
"@angular/forms": "
|
|
43
|
-
"@angular/platform-browser": "
|
|
44
|
-
"@angular/platform-browser-dynamic": "
|
|
45
|
-
"@angular/router": "
|
|
46
|
-
"@bitblit/ratchet-common": "5.0.
|
|
38
|
+
"@angular/animations": "19.0.6",
|
|
39
|
+
"@angular/common": "19.0.6",
|
|
40
|
+
"@angular/compiler": "19.0.6",
|
|
41
|
+
"@angular/core": "19.0.6",
|
|
42
|
+
"@angular/forms": "19.0.6",
|
|
43
|
+
"@angular/platform-browser": "19.0.6",
|
|
44
|
+
"@angular/platform-browser-dynamic": "19.0.6",
|
|
45
|
+
"@angular/router": "19.0.6",
|
|
46
|
+
"@bitblit/ratchet-common": "5.0.560-alpha",
|
|
47
47
|
"primeflex": "3.3.1",
|
|
48
48
|
"primeicons": "7.0.0",
|
|
49
|
-
"primeng": "
|
|
49
|
+
"primeng": "19.0.3",
|
|
50
50
|
"rxjs": "7.8.1",
|
|
51
|
-
"zone.js": "0.
|
|
51
|
+
"zone.js": "0.15.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@angular/animations": "^
|
|
55
|
-
"@angular/common": "^
|
|
56
|
-
"@angular/compiler": "^
|
|
57
|
-
"@angular/core": "^
|
|
58
|
-
"@angular/forms": "^
|
|
59
|
-
"@angular/platform-browser": "^
|
|
60
|
-
"@angular/platform-browser-dynamic": "^
|
|
61
|
-
"@angular/router": "^
|
|
62
|
-
"@bitblit/ratchet-common": "5.0.
|
|
54
|
+
"@angular/animations": "^19.0.6",
|
|
55
|
+
"@angular/common": "^19.0.6",
|
|
56
|
+
"@angular/compiler": "^19.0.6",
|
|
57
|
+
"@angular/core": "^19.0.6",
|
|
58
|
+
"@angular/forms": "^19.0.6",
|
|
59
|
+
"@angular/platform-browser": "^19.0.6",
|
|
60
|
+
"@angular/platform-browser-dynamic": "^19.0.6",
|
|
61
|
+
"@angular/router": "^19.0.6",
|
|
62
|
+
"@bitblit/ratchet-common": "5.0.560-alpha",
|
|
63
63
|
"primeflex": "3.3.1",
|
|
64
64
|
"primeicons": "7.0.0",
|
|
65
|
-
"primeng": "
|
|
65
|
+
"primeng": "19.0.3",
|
|
66
66
|
"rxjs": "7.8.1",
|
|
67
|
-
"zone.js": "0.
|
|
67
|
+
"zone.js": "0.15.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@angular/compiler-cli": "
|
|
71
|
-
"@bitblit/ratchet-node-only": "5.0.
|
|
70
|
+
"@angular/compiler-cli": "19.0.6",
|
|
71
|
+
"@bitblit/ratchet-node-only": "5.0.560-alpha"
|
|
72
72
|
}
|
|
73
73
|
}
|