@osovitny/anatoly 3.17.69 → 3.17.70
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.
|
@@ -20,7 +20,7 @@ import * as i1 from "@angular/common";
|
|
|
20
20
|
import * as i2 from "@fortawesome/angular-fontawesome";
|
|
21
21
|
function NodataComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
22
22
|
i0.ɵɵelementStart(0, "div");
|
|
23
|
-
i0.ɵɵelement(1, "fa-icon",
|
|
23
|
+
i0.ɵɵelement(1, "fa-icon", 5);
|
|
24
24
|
i0.ɵɵelementEnd();
|
|
25
25
|
} if (rf & 2) {
|
|
26
26
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -30,7 +30,7 @@ function NodataComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
|
30
30
|
function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
31
31
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2);
|
|
32
32
|
i0.ɵɵtemplate(2, NodataComponent_div_0_div_2_Template, 2, 2, "div", 3);
|
|
33
|
-
i0.ɵɵelementStart(3, "h3");
|
|
33
|
+
i0.ɵɵelementStart(3, "h3", 4);
|
|
34
34
|
i0.ɵɵtext(4);
|
|
35
35
|
i0.ɵɵelementEnd();
|
|
36
36
|
i0.ɵɵprojection(5);
|
|
@@ -39,9 +39,7 @@ function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
39
39
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
40
40
|
i0.ɵɵadvance(2);
|
|
41
41
|
i0.ɵɵproperty("ngIf", ctx_r0.icon);
|
|
42
|
-
i0.ɵɵadvance();
|
|
43
|
-
i0.ɵɵclassMap(ctx_r0.headingClass);
|
|
44
|
-
i0.ɵɵadvance();
|
|
42
|
+
i0.ɵɵadvance(2);
|
|
45
43
|
i0.ɵɵtextInterpolate(ctx_r0.heading);
|
|
46
44
|
} }
|
|
47
45
|
const _c0 = ["*"];
|
|
@@ -52,19 +50,18 @@ export class NodataComponent {
|
|
|
52
50
|
this.dataFound = false;
|
|
53
51
|
this.iconSize = '10x';
|
|
54
52
|
this.heading = 'No data found';
|
|
55
|
-
this.headingClass = 'text-uppercase';
|
|
56
53
|
}
|
|
57
54
|
static { this.ɵfac = function NodataComponent_Factory(t) { return new (t || NodataComponent)(); }; }
|
|
58
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NodataComponent, selectors: [["anatoly-nodata"]], inputs: { dataLoading: "dataLoading", dataLoaded: "dataLoaded", dataFound: "dataFound", icon: "icon", iconSize: "iconSize", heading: "heading"
|
|
55
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NodataComponent, selectors: [["anatoly-nodata"]], inputs: { dataLoading: "dataLoading", dataLoaded: "dataLoaded", dataFound: "dataFound", icon: "icon", iconSize: "iconSize", heading: "heading" }, ngContentSelectors: _c0, decls: 1, vars: 1, consts: [["class", "no-data", 4, "ngIf"], [1, "no-data"], [1, "loaded", "text-info"], [4, "ngIf"], [1, "no-data-heading"], [3, "icon", "size"]], template: function NodataComponent_Template(rf, ctx) { if (rf & 1) {
|
|
59
56
|
i0.ɵɵprojectionDef();
|
|
60
|
-
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6,
|
|
57
|
+
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6, 2, "div", 0);
|
|
61
58
|
} if (rf & 2) {
|
|
62
59
|
i0.ɵɵproperty("ngIf", ctx.dataLoaded && !ctx.dataFound);
|
|
63
60
|
} }, dependencies: [i1.NgIf, i2.FaIconComponent], encapsulation: 2 }); }
|
|
64
61
|
}
|
|
65
62
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NodataComponent, [{
|
|
66
63
|
type: Component,
|
|
67
|
-
args: [{ selector: 'anatoly-nodata', template: "<div class=\"no-data\" *ngIf='dataLoaded && !dataFound'>\r\n <div class='loaded text-info'>\r\n <div *ngIf='icon'>\r\n <fa-icon [icon]=\"icon\" [size]=\"iconSize\"></fa-icon>\r\n </div>\r\n <h3 class='
|
|
64
|
+
args: [{ selector: 'anatoly-nodata', template: "<div class=\"no-data\" *ngIf='dataLoaded && !dataFound'>\r\n <div class='loaded text-info'>\r\n <div *ngIf='icon'>\r\n <fa-icon [icon]=\"icon\" [size]=\"iconSize\"></fa-icon>\r\n </div>\r\n <h3 class='no-data-heading'>{{heading}}</h3>\r\n <ng-content></ng-content>\r\n </div>\r\n</div>\r\n" }]
|
|
68
65
|
}], () => [], { dataLoading: [{
|
|
69
66
|
type: Input
|
|
70
67
|
}], dataLoaded: [{
|
|
@@ -77,8 +74,6 @@ export class NodataComponent {
|
|
|
77
74
|
type: Input
|
|
78
75
|
}], heading: [{
|
|
79
76
|
type: Input
|
|
80
|
-
}], headingClass: [{
|
|
81
|
-
type: Input
|
|
82
77
|
}] }); })();
|
|
83
78
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NodataComponent, { className: "NodataComponent", filePath: "lib\\ui\\components\\nodata\\nodata.component.ts", lineNumber: 25 }); })();
|
|
84
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
79
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9kYXRhLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuYXRvbHkvc3JjL2xpYi91aS9jb21wb25lbnRzL25vZGF0YS9ub2RhdGEuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5hdG9seS9zcmMvbGliL3VpL2NvbXBvbmVudHMvbm9kYXRhL25vZGF0YS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7RUFjRTtBQUVGLE1BQU07QUFDTixPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7SUNmN0MsMkJBQWtCO0lBQ2hCLDZCQUFtRDtJQUNyRCxpQkFBTTs7O0lBREssY0FBYTtJQUFiLGtDQUFhLHlCQUFBOzs7SUFINUIsOEJBQXNELGFBQUE7SUFFbEQsc0VBRU07SUFDTiw2QkFBNEI7SUFBQSxZQUFXO0lBQUEsaUJBQUs7SUFDNUMsa0JBQXlCO0lBQzNCLGlCQUFNLEVBQUE7OztJQUxFLGVBQVU7SUFBVixrQ0FBVTtJQUdZLGVBQVc7SUFBWCxvQ0FBVzs7O0FEbUIzQyxNQUFNLE9BQU8sZUFBZTtJQVMxQjtRQVJTLGdCQUFXLEdBQVksS0FBSyxDQUFDO1FBQzdCLGVBQVUsR0FBWSxLQUFLLENBQUM7UUFDNUIsY0FBUyxHQUFZLEtBQUssQ0FBQztRQUczQixhQUFRLEdBQWEsS0FBSyxDQUFDO1FBQzNCLFlBQU8sR0FBVyxlQUFlLENBQUM7SUFHM0MsQ0FBQztnRkFWVSxlQUFlO29FQUFmLGVBQWU7O1lDeEI1QixnRUFRTTs7WUFSZ0IsdURBQThCOzs7aUZEd0J2QyxlQUFlO2NBSjNCLFNBQVM7MkJBQ0UsZ0JBQWdCO29CQUlqQixXQUFXO2tCQUFuQixLQUFLO1lBQ0csVUFBVTtrQkFBbEIsS0FBSztZQUNHLFNBQVM7a0JBQWpCLEtBQUs7WUFFRyxJQUFJO2tCQUFaLEtBQUs7WUFDRyxRQUFRO2tCQUFoQixLQUFLO1lBQ0csT0FBTztrQkFBZixLQUFLOztrRkFQSyxlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiLypcclxuPGZpbGU+XHJcbiAgUHJvamVjdDpcclxuICAgIEBvc292aXRueS9hbmF0b2x5XHJcblxyXG4gIEF1dGhvcnM6XHJcbiAgICBWYWRpbSBPc292aXRueSB2YWRpbUBvc292aXRueS5jb21cclxuICAgIEFuYXRvbHkgT3Nvdml0bnkgYW5hdG9seUBvc292aXRueS5jb21cclxuXHJcbiAgQ3JlYXRlZDpcclxuICAgIDI5IEp1bCAyMDIyXHJcblxyXG4gIENvcHlyaWdodCAoYykgMjAxNi0yMDIyIE9zb3ZpdG55IEluYy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cclxuPC9maWxlPlxyXG4qL1xyXG5cclxuLy9Ob2RlXHJcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgU2l6ZVByb3AgfSBmcm9tICdAZm9ydGF3ZXNvbWUvZm9udGF3ZXNvbWUtc3ZnLWNvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhbmF0b2x5LW5vZGF0YScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL25vZGF0YS5jb21wb25lbnQuaHRtbCdcclxufSlcclxuZXhwb3J0IGNsYXNzIE5vZGF0YUNvbXBvbmVudCB7XHJcbiAgQElucHV0KCkgZGF0YUxvYWRpbmc6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoKSBkYXRhTG9hZGVkOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCkgZGF0YUZvdW5kOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpIGljb247XHJcbiAgQElucHV0KCkgaWNvblNpemU6IFNpemVQcm9wID0gJzEweCc7XHJcbiAgQElucHV0KCkgaGVhZGluZzogc3RyaW5nID0gJ05vIGRhdGEgZm91bmQnO1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHtcclxuICB9XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cIm5vLWRhdGFcIiAqbmdJZj0nZGF0YUxvYWRlZCAmJiAhZGF0YUZvdW5kJz5cclxuICA8ZGl2IGNsYXNzPSdsb2FkZWQgdGV4dC1pbmZvJz5cclxuICAgIDxkaXYgKm5nSWY9J2ljb24nPlxyXG4gICAgICA8ZmEtaWNvbiBbaWNvbl09XCJpY29uXCIgW3NpemVdPVwiaWNvblNpemVcIj48L2ZhLWljb24+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxoMyBjbGFzcz0nbm8tZGF0YS1oZWFkaW5nJz57e2hlYWRpbmd9fTwvaDM+XHJcbiAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
|
|
@@ -5350,7 +5350,7 @@ class SignOutButtonComponent extends ComponentBase {
|
|
|
5350
5350
|
//Node
|
|
5351
5351
|
function NodataComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
5352
5352
|
i0.ɵɵelementStart(0, "div");
|
|
5353
|
-
i0.ɵɵelement(1, "fa-icon",
|
|
5353
|
+
i0.ɵɵelement(1, "fa-icon", 5);
|
|
5354
5354
|
i0.ɵɵelementEnd();
|
|
5355
5355
|
} if (rf & 2) {
|
|
5356
5356
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -5360,7 +5360,7 @@ function NodataComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
|
5360
5360
|
function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
5361
5361
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2);
|
|
5362
5362
|
i0.ɵɵtemplate(2, NodataComponent_div_0_div_2_Template, 2, 2, "div", 3);
|
|
5363
|
-
i0.ɵɵelementStart(3, "h3");
|
|
5363
|
+
i0.ɵɵelementStart(3, "h3", 4);
|
|
5364
5364
|
i0.ɵɵtext(4);
|
|
5365
5365
|
i0.ɵɵelementEnd();
|
|
5366
5366
|
i0.ɵɵprojection(5);
|
|
@@ -5369,9 +5369,7 @@ function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
5369
5369
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
5370
5370
|
i0.ɵɵadvance(2);
|
|
5371
5371
|
i0.ɵɵproperty("ngIf", ctx_r0.icon);
|
|
5372
|
-
i0.ɵɵadvance();
|
|
5373
|
-
i0.ɵɵclassMap(ctx_r0.headingClass);
|
|
5374
|
-
i0.ɵɵadvance();
|
|
5372
|
+
i0.ɵɵadvance(2);
|
|
5375
5373
|
i0.ɵɵtextInterpolate(ctx_r0.heading);
|
|
5376
5374
|
} }
|
|
5377
5375
|
const _c0$a = ["*"];
|
|
@@ -5382,19 +5380,18 @@ class NodataComponent {
|
|
|
5382
5380
|
this.dataFound = false;
|
|
5383
5381
|
this.iconSize = '10x';
|
|
5384
5382
|
this.heading = 'No data found';
|
|
5385
|
-
this.headingClass = 'text-uppercase';
|
|
5386
5383
|
}
|
|
5387
5384
|
static { this.ɵfac = function NodataComponent_Factory(t) { return new (t || NodataComponent)(); }; }
|
|
5388
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NodataComponent, selectors: [["anatoly-nodata"]], inputs: { dataLoading: "dataLoading", dataLoaded: "dataLoaded", dataFound: "dataFound", icon: "icon", iconSize: "iconSize", heading: "heading"
|
|
5385
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NodataComponent, selectors: [["anatoly-nodata"]], inputs: { dataLoading: "dataLoading", dataLoaded: "dataLoaded", dataFound: "dataFound", icon: "icon", iconSize: "iconSize", heading: "heading" }, ngContentSelectors: _c0$a, decls: 1, vars: 1, consts: [["class", "no-data", 4, "ngIf"], [1, "no-data"], [1, "loaded", "text-info"], [4, "ngIf"], [1, "no-data-heading"], [3, "icon", "size"]], template: function NodataComponent_Template(rf, ctx) { if (rf & 1) {
|
|
5389
5386
|
i0.ɵɵprojectionDef();
|
|
5390
|
-
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6,
|
|
5387
|
+
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6, 2, "div", 0);
|
|
5391
5388
|
} if (rf & 2) {
|
|
5392
5389
|
i0.ɵɵproperty("ngIf", ctx.dataLoaded && !ctx.dataFound);
|
|
5393
5390
|
} }, dependencies: [i1$2.NgIf, i1$6.FaIconComponent], encapsulation: 2 }); }
|
|
5394
5391
|
}
|
|
5395
5392
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NodataComponent, [{
|
|
5396
5393
|
type: Component,
|
|
5397
|
-
args: [{ selector: 'anatoly-nodata', template: "<div class=\"no-data\" *ngIf='dataLoaded && !dataFound'>\r\n <div class='loaded text-info'>\r\n <div *ngIf='icon'>\r\n <fa-icon [icon]=\"icon\" [size]=\"iconSize\"></fa-icon>\r\n </div>\r\n <h3 class='
|
|
5394
|
+
args: [{ selector: 'anatoly-nodata', template: "<div class=\"no-data\" *ngIf='dataLoaded && !dataFound'>\r\n <div class='loaded text-info'>\r\n <div *ngIf='icon'>\r\n <fa-icon [icon]=\"icon\" [size]=\"iconSize\"></fa-icon>\r\n </div>\r\n <h3 class='no-data-heading'>{{heading}}</h3>\r\n <ng-content></ng-content>\r\n </div>\r\n</div>\r\n" }]
|
|
5398
5395
|
}], () => [], { dataLoading: [{
|
|
5399
5396
|
type: Input
|
|
5400
5397
|
}], dataLoaded: [{
|
|
@@ -5407,8 +5404,6 @@ class NodataComponent {
|
|
|
5407
5404
|
type: Input
|
|
5408
5405
|
}], heading: [{
|
|
5409
5406
|
type: Input
|
|
5410
|
-
}], headingClass: [{
|
|
5411
|
-
type: Input
|
|
5412
5407
|
}] }); })();
|
|
5413
5408
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NodataComponent, { className: "NodataComponent", filePath: "lib\\ui\\components\\nodata\\nodata.component.ts", lineNumber: 25 }); })();
|
|
5414
5409
|
|