@colijnit/sharedcomponents 1.0.28 → 1.0.29
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/bundles/colijnit-sharedcomponents.umd.js +2 -1
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/statusbar/statusbar.component.js +4 -2
- package/esm2015/lib/enum/icon.enum.js +1 -1
- package/esm2015/lib/model/icon-svg.js +1 -1
- package/esm2015/lib/pipe/array-number.pipe.js +1 -1
- package/fesm2015/colijnit-sharedcomponents.js +3 -1
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/statusbar/statusbar.component.d.ts +1 -0
- package/lib/components/statusbar/style/_layout.scss +11 -0
- package/package.json +1 -1
|
@@ -4448,7 +4448,7 @@
|
|
|
4448
4448
|
StatusbarComponent.decorators = [
|
|
4449
4449
|
{ type: i0.Component, args: [{
|
|
4450
4450
|
selector: "co-statusbar",
|
|
4451
|
-
template: "\n <div class=\"co-statusbar-wrapper\"\n *ngIf=\"statusbarData\"\n (mouseover)=\"onHover($event)\"\n (mouseleave)=\"onLeave()\"\n (click)=\"onStatusbarClick()\">\n <div class=\"statuses\">\n <div *ngFor=\"let data of statusbarData; let index = index\" class=\"status\">\n <co-linear-gauge [value]=\"data.percentage\" [count]=\"data.count ? data.count : undefined\"></co-linear-gauge>\n </div>\n </div>\n <div class=status-description-popup *ngIf=\"showPopup\" @showHidePopup [ngClass]=\"popupClass\">\n <div class=\"status-descriptions\">\n <div *ngFor=\"let data of statusbarData; let index = index\" class=\"status-description\">\n <co-circular-gauge [value]=\"data.percentage\"></co-circular-gauge>\n <span [textContent]=\"data.label\"></span>\n </div>\n </div>\n </div>\n </div>\n ",
|
|
4451
|
+
template: "\n <div class=\"co-statusbar-wrapper\"\n *ngIf=\"statusbarData\"\n (mouseover)=\"onHover($event)\"\n (mouseleave)=\"onLeave()\"\n (click)=\"onStatusbarClick()\">\n <div class=\"statuses\">\n <div *ngFor=\"let data of statusbarData; let index = index\" class=\"status\">\n <co-linear-gauge [class.focused-status]=\"focusedStatusIndex !== undefined && focusedStatusIndex === index\"\n [value]=\"data.percentage\" [count]=\"data.count ? data.count : undefined\"></co-linear-gauge>\n </div>\n </div>\n <div class=status-description-popup *ngIf=\"showPopup\" @showHidePopup [ngClass]=\"popupClass\">\n <div class=\"status-descriptions\">\n <div *ngFor=\"let data of statusbarData; let index = index\" class=\"status-description\">\n <co-circular-gauge [value]=\"data.percentage\"></co-circular-gauge>\n <span [textContent]=\"data.label\"></span>\n </div>\n </div>\n </div>\n </div>\n ",
|
|
4452
4452
|
animations: [
|
|
4453
4453
|
animations.trigger("showHidePopup", [
|
|
4454
4454
|
animations.state("void", animations.style({ opacity: 0 })),
|
|
@@ -4462,6 +4462,7 @@
|
|
|
4462
4462
|
StatusbarComponent.ctorParameters = function () { return []; };
|
|
4463
4463
|
StatusbarComponent.propDecorators = {
|
|
4464
4464
|
statusbarData: [{ type: i0.Input }],
|
|
4465
|
+
focusedStatusIndex: [{ type: i0.Input }],
|
|
4465
4466
|
statusbarClick: [{ type: i0.Output }],
|
|
4466
4467
|
showClass: [{ type: i0.HostBinding, args: ["class.co-statusbar",] }]
|
|
4467
4468
|
};
|