@osovitny/anatoly 3.17.33 → 3.17.34
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.
|
@@ -18,9 +18,18 @@ import { Component, Input } from '@angular/core';
|
|
|
18
18
|
import * as i0 from "@angular/core";
|
|
19
19
|
import * as i1 from "@angular/common";
|
|
20
20
|
import * as i2 from "@fortawesome/angular-fontawesome";
|
|
21
|
+
function NodataComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementStart(0, "div");
|
|
23
|
+
i0.ɵɵelement(1, "fa-icon", 4);
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
} if (rf & 2) {
|
|
26
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
27
|
+
i0.ɵɵadvance();
|
|
28
|
+
i0.ɵɵproperty("icon", ctx_r1.icon)("size", ctx_r1.iconSize);
|
|
29
|
+
} }
|
|
21
30
|
function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
22
31
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2);
|
|
23
|
-
i0.ɵɵ
|
|
32
|
+
i0.ɵɵtemplate(2, NodataComponent_div_0_div_2_Template, 2, 2, "div", 3);
|
|
24
33
|
i0.ɵɵelementStart(3, "h3");
|
|
25
34
|
i0.ɵɵtext(4);
|
|
26
35
|
i0.ɵɵelementEnd();
|
|
@@ -28,7 +37,9 @@ function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
28
37
|
i0.ɵɵelementEnd()();
|
|
29
38
|
} if (rf & 2) {
|
|
30
39
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
31
|
-
i0.ɵɵadvance(
|
|
40
|
+
i0.ɵɵadvance(2);
|
|
41
|
+
i0.ɵɵproperty("ngIf", ctx_r0.icon);
|
|
42
|
+
i0.ɵɵadvance();
|
|
32
43
|
i0.ɵɵclassMap(ctx_r0.headingClass);
|
|
33
44
|
i0.ɵɵadvance();
|
|
34
45
|
i0.ɵɵtextInterpolate(ctx_r0.heading);
|
|
@@ -39,30 +50,35 @@ export class NodataComponent {
|
|
|
39
50
|
this.dataLoading = false;
|
|
40
51
|
this.dataLoaded = false;
|
|
41
52
|
this.dataFound = false;
|
|
53
|
+
this.iconSize = '10x';
|
|
42
54
|
this.heading = 'No data found';
|
|
43
55
|
this.headingClass = 'text-uppercase';
|
|
44
56
|
}
|
|
45
57
|
static { this.ɵfac = function NodataComponent_Factory(t) { return new (t || NodataComponent)(); }; }
|
|
46
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NodataComponent, selectors: [["anatoly-nodata"]], inputs: { dataLoading: "dataLoading", dataLoaded: "dataLoaded", dataFound: "dataFound", heading: "heading", headingClass: "headingClass" }, ngContentSelectors: _c0, decls: 1, vars: 1, consts: [["class", "no-data", 4, "ngIf"], [1, "no-data"], [1, "loaded", "text-info"], [
|
|
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", headingClass: "headingClass" }, ngContentSelectors: _c0, decls: 1, vars: 1, consts: [["class", "no-data", 4, "ngIf"], [1, "no-data"], [1, "loaded", "text-info"], [4, "ngIf"], [3, "icon", "size"]], template: function NodataComponent_Template(rf, ctx) { if (rf & 1) {
|
|
47
59
|
i0.ɵɵprojectionDef();
|
|
48
|
-
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6,
|
|
60
|
+
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6, 5, "div", 0);
|
|
49
61
|
} if (rf & 2) {
|
|
50
62
|
i0.ɵɵproperty("ngIf", ctx.dataLoaded && !ctx.dataFound);
|
|
51
63
|
} }, dependencies: [i1.NgIf, i2.FaIconComponent], encapsulation: 2 }); }
|
|
52
64
|
}
|
|
53
65
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NodataComponent, [{
|
|
54
66
|
type: Component,
|
|
55
|
-
args: [{ selector: 'anatoly-nodata', template: "<div class=\"no-data\" *ngIf='dataLoaded && !dataFound'>\r\n <div class='loaded text-info'>\r\n <fa-icon icon=\"
|
|
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='{{headingClass}}'>{{heading}}</h3>\r\n <ng-content></ng-content>\r\n </div>\r\n</div>\r\n" }]
|
|
56
68
|
}], () => [], { dataLoading: [{
|
|
57
69
|
type: Input
|
|
58
70
|
}], dataLoaded: [{
|
|
59
71
|
type: Input
|
|
60
72
|
}], dataFound: [{
|
|
61
73
|
type: Input
|
|
74
|
+
}], icon: [{
|
|
75
|
+
type: Input
|
|
76
|
+
}], iconSize: [{
|
|
77
|
+
type: Input
|
|
62
78
|
}], heading: [{
|
|
63
79
|
type: Input
|
|
64
80
|
}], headingClass: [{
|
|
65
81
|
type: Input
|
|
66
82
|
}] }); })();
|
|
67
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NodataComponent, { className: "NodataComponent", filePath: "lib\\ui\\components\\nodata\\nodata.component.ts", lineNumber:
|
|
68
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
83
|
+
(() => { (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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9kYXRhLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuYXRvbHkvc3JjL2xpYi91aS9jb21wb25lbnRzL25vZGF0YS9ub2RhdGEuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5hdG9seS9zcmMvbGliL3VpL2NvbXBvbmVudHMvbm9kYXRhL25vZGF0YS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7RUFjRTtBQUVGLE1BQU07QUFDTixPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7SUNmN0MsMkJBQWtCO0lBQ2hCLDZCQUFtRDtJQUNyRCxpQkFBTTs7O0lBREssY0FBYTtJQUFiLGtDQUFhLHlCQUFBOzs7SUFINUIsOEJBQXNELGFBQUE7SUFFbEQsc0VBRU07SUFDTiwwQkFBNkI7SUFBQSxZQUFXO0lBQUEsaUJBQUs7SUFDN0Msa0JBQXlCO0lBQzNCLGlCQUFNLEVBQUE7OztJQUxFLGVBQVU7SUFBVixrQ0FBVTtJQUdaLGNBQXdCO0lBQXhCLGtDQUF3QjtJQUFDLGNBQVc7SUFBWCxvQ0FBVzs7O0FEbUI1QyxNQUFNLE9BQU8sZUFBZTtJQVUxQjtRQVRTLGdCQUFXLEdBQVksS0FBSyxDQUFDO1FBQzdCLGVBQVUsR0FBWSxLQUFLLENBQUM7UUFDNUIsY0FBUyxHQUFZLEtBQUssQ0FBQztRQUczQixhQUFRLEdBQWEsS0FBSyxDQUFDO1FBQzNCLFlBQU8sR0FBVyxlQUFlLENBQUM7UUFDbEMsaUJBQVksR0FBVyxnQkFBZ0IsQ0FBQztJQUdqRCxDQUFDO2dGQVhVLGVBQWU7b0VBQWYsZUFBZTs7WUN4QjVCLGdFQVFNOztZQVJnQix1REFBOEI7OztpRkR3QnZDLGVBQWU7Y0FKM0IsU0FBUzsyQkFDRSxnQkFBZ0I7b0JBSWpCLFdBQVc7a0JBQW5CLEtBQUs7WUFDRyxVQUFVO2tCQUFsQixLQUFLO1lBQ0csU0FBUztrQkFBakIsS0FBSztZQUVHLElBQUk7a0JBQVosS0FBSztZQUNHLFFBQVE7a0JBQWhCLEtBQUs7WUFDRyxPQUFPO2tCQUFmLEtBQUs7WUFDRyxZQUFZO2tCQUFwQixLQUFLOztrRkFSSyxlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiLypcclxuPGZpbGU+XHJcbiAgUHJvamVjdDpcclxuICAgIEBvc292aXRueS9hbmF0b2x5XHJcblxyXG4gIEF1dGhvcnM6XHJcbiAgICBWYWRpbSBPc292aXRueSB2YWRpbUBvc292aXRueS5jb21cclxuICAgIEFuYXRvbHkgT3Nvdml0bnkgYW5hdG9seUBvc292aXRueS5jb21cclxuXHJcbiAgQ3JlYXRlZDpcclxuICAgIDI5IEp1bCAyMDIyXHJcblxyXG4gIENvcHlyaWdodCAoYykgMjAxNi0yMDIyIE9zb3ZpdG55IEluYy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cclxuPC9maWxlPlxyXG4qL1xyXG5cclxuLy9Ob2RlXHJcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgU2l6ZVByb3AgfSBmcm9tICdAZm9ydGF3ZXNvbWUvZm9udGF3ZXNvbWUtc3ZnLWNvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhbmF0b2x5LW5vZGF0YScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL25vZGF0YS5jb21wb25lbnQuaHRtbCdcclxufSlcclxuZXhwb3J0IGNsYXNzIE5vZGF0YUNvbXBvbmVudCB7XHJcbiAgQElucHV0KCkgZGF0YUxvYWRpbmc6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoKSBkYXRhTG9hZGVkOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCkgZGF0YUZvdW5kOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpIGljb247XHJcbiAgQElucHV0KCkgaWNvblNpemU6IFNpemVQcm9wID0gJzEweCc7XHJcbiAgQElucHV0KCkgaGVhZGluZzogc3RyaW5nID0gJ05vIGRhdGEgZm91bmQnO1xyXG4gIEBJbnB1dCgpIGhlYWRpbmdDbGFzczogc3RyaW5nID0gJ3RleHQtdXBwZXJjYXNlJztcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7XHJcbiAgfVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJuby1kYXRhXCIgKm5nSWY9J2RhdGFMb2FkZWQgJiYgIWRhdGFGb3VuZCc+XHJcbiAgPGRpdiBjbGFzcz0nbG9hZGVkIHRleHQtaW5mbyc+XHJcbiAgICA8ZGl2ICpuZ0lmPSdpY29uJz5cclxuICAgICAgPGZhLWljb24gW2ljb25dPVwiaWNvblwiIFtzaXplXT1cImljb25TaXplXCI+PC9mYS1pY29uPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8aDMgY2xhc3M9J3t7aGVhZGluZ0NsYXNzfX0nPnt7aGVhZGluZ319PC9oMz5cclxuICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuICA8L2Rpdj5cclxuPC9kaXY+XHJcbiJdfQ==
|
|
@@ -4782,9 +4782,18 @@ class SignOutButtonComponent extends ComponentBase {
|
|
|
4782
4782
|
</file>
|
|
4783
4783
|
*/
|
|
4784
4784
|
//Node
|
|
4785
|
+
function NodataComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
4786
|
+
i0.ɵɵelementStart(0, "div");
|
|
4787
|
+
i0.ɵɵelement(1, "fa-icon", 4);
|
|
4788
|
+
i0.ɵɵelementEnd();
|
|
4789
|
+
} if (rf & 2) {
|
|
4790
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
4791
|
+
i0.ɵɵadvance();
|
|
4792
|
+
i0.ɵɵproperty("icon", ctx_r1.icon)("size", ctx_r1.iconSize);
|
|
4793
|
+
} }
|
|
4785
4794
|
function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
4786
4795
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2);
|
|
4787
|
-
i0.ɵɵ
|
|
4796
|
+
i0.ɵɵtemplate(2, NodataComponent_div_0_div_2_Template, 2, 2, "div", 3);
|
|
4788
4797
|
i0.ɵɵelementStart(3, "h3");
|
|
4789
4798
|
i0.ɵɵtext(4);
|
|
4790
4799
|
i0.ɵɵelementEnd();
|
|
@@ -4792,7 +4801,9 @@ function NodataComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
4792
4801
|
i0.ɵɵelementEnd()();
|
|
4793
4802
|
} if (rf & 2) {
|
|
4794
4803
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
4795
|
-
i0.ɵɵadvance(
|
|
4804
|
+
i0.ɵɵadvance(2);
|
|
4805
|
+
i0.ɵɵproperty("ngIf", ctx_r0.icon);
|
|
4806
|
+
i0.ɵɵadvance();
|
|
4796
4807
|
i0.ɵɵclassMap(ctx_r0.headingClass);
|
|
4797
4808
|
i0.ɵɵadvance();
|
|
4798
4809
|
i0.ɵɵtextInterpolate(ctx_r0.heading);
|
|
@@ -4803,32 +4814,37 @@ class NodataComponent {
|
|
|
4803
4814
|
this.dataLoading = false;
|
|
4804
4815
|
this.dataLoaded = false;
|
|
4805
4816
|
this.dataFound = false;
|
|
4817
|
+
this.iconSize = '10x';
|
|
4806
4818
|
this.heading = 'No data found';
|
|
4807
4819
|
this.headingClass = 'text-uppercase';
|
|
4808
4820
|
}
|
|
4809
4821
|
static { this.ɵfac = function NodataComponent_Factory(t) { return new (t || NodataComponent)(); }; }
|
|
4810
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NodataComponent, selectors: [["anatoly-nodata"]], inputs: { dataLoading: "dataLoading", dataLoaded: "dataLoaded", dataFound: "dataFound", heading: "heading", headingClass: "headingClass" }, ngContentSelectors: _c0$a, decls: 1, vars: 1, consts: [["class", "no-data", 4, "ngIf"], [1, "no-data"], [1, "loaded", "text-info"], [
|
|
4822
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NodataComponent, selectors: [["anatoly-nodata"]], inputs: { dataLoading: "dataLoading", dataLoaded: "dataLoaded", dataFound: "dataFound", icon: "icon", iconSize: "iconSize", heading: "heading", headingClass: "headingClass" }, ngContentSelectors: _c0$a, decls: 1, vars: 1, consts: [["class", "no-data", 4, "ngIf"], [1, "no-data"], [1, "loaded", "text-info"], [4, "ngIf"], [3, "icon", "size"]], template: function NodataComponent_Template(rf, ctx) { if (rf & 1) {
|
|
4811
4823
|
i0.ɵɵprojectionDef();
|
|
4812
|
-
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6,
|
|
4824
|
+
i0.ɵɵtemplate(0, NodataComponent_div_0_Template, 6, 5, "div", 0);
|
|
4813
4825
|
} if (rf & 2) {
|
|
4814
4826
|
i0.ɵɵproperty("ngIf", ctx.dataLoaded && !ctx.dataFound);
|
|
4815
4827
|
} }, dependencies: [i1$2.NgIf, i1$6.FaIconComponent], encapsulation: 2 }); }
|
|
4816
4828
|
}
|
|
4817
4829
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NodataComponent, [{
|
|
4818
4830
|
type: Component,
|
|
4819
|
-
args: [{ selector: 'anatoly-nodata', template: "<div class=\"no-data\" *ngIf='dataLoaded && !dataFound'>\r\n <div class='loaded text-info'>\r\n <fa-icon icon=\"
|
|
4831
|
+
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='{{headingClass}}'>{{heading}}</h3>\r\n <ng-content></ng-content>\r\n </div>\r\n</div>\r\n" }]
|
|
4820
4832
|
}], () => [], { dataLoading: [{
|
|
4821
4833
|
type: Input
|
|
4822
4834
|
}], dataLoaded: [{
|
|
4823
4835
|
type: Input
|
|
4824
4836
|
}], dataFound: [{
|
|
4825
4837
|
type: Input
|
|
4838
|
+
}], icon: [{
|
|
4839
|
+
type: Input
|
|
4840
|
+
}], iconSize: [{
|
|
4841
|
+
type: Input
|
|
4826
4842
|
}], heading: [{
|
|
4827
4843
|
type: Input
|
|
4828
4844
|
}], headingClass: [{
|
|
4829
4845
|
type: Input
|
|
4830
4846
|
}] }); })();
|
|
4831
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NodataComponent, { className: "NodataComponent", filePath: "lib\\ui\\components\\nodata\\nodata.component.ts", lineNumber:
|
|
4847
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NodataComponent, { className: "NodataComponent", filePath: "lib\\ui\\components\\nodata\\nodata.component.ts", lineNumber: 25 }); })();
|
|
4832
4848
|
|
|
4833
4849
|
/*
|
|
4834
4850
|
<file>
|