@oicl/openbridge-webcomponents-ng 2.0.0-next.8 → 2.0.0-next.9
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.
|
@@ -8534,12 +8534,24 @@ class ObcAlertMenu {
|
|
|
8534
8534
|
get canAckAll() {
|
|
8535
8535
|
return this._el.canAckAll;
|
|
8536
8536
|
}
|
|
8537
|
+
set showSilenceButton(v) {
|
|
8538
|
+
this._ngZone.runOutsideAngular(() => (this._el.showSilenceButton = v));
|
|
8539
|
+
}
|
|
8540
|
+
get showSilenceButton() {
|
|
8541
|
+
return this._el.showSilenceButton;
|
|
8542
|
+
}
|
|
8543
|
+
set showAlertListButton(v) {
|
|
8544
|
+
this._ngZone.runOutsideAngular(() => (this._el.showAlertListButton = v));
|
|
8545
|
+
}
|
|
8546
|
+
get showAlertListButton() {
|
|
8547
|
+
return this._el.showAlertListButton;
|
|
8548
|
+
}
|
|
8537
8549
|
ackAllVisibleClickEvent = new EventEmitter();
|
|
8538
8550
|
alertListClickEvent = new EventEmitter();
|
|
8539
8551
|
silenceClickEvent = new EventEmitter();
|
|
8540
8552
|
goToAlertListClickEvent = new EventEmitter();
|
|
8541
8553
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAlertMenu, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
8542
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcAlertMenu, isStandalone: true, selector: "obc-alert-menu", inputs: { hasShelved: "hasShelved", canAckAll: "canAckAll" }, outputs: { ackAllVisibleClickEvent: "ackAllVisibleClickEvent", alertListClickEvent: "alertListClickEvent", silenceClickEvent: "silenceClickEvent", goToAlertListClickEvent: "goToAlertListClickEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
8554
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcAlertMenu, isStandalone: true, selector: "obc-alert-menu", inputs: { hasShelved: "hasShelved", canAckAll: "canAckAll", showSilenceButton: "showSilenceButton", showAlertListButton: "showAlertListButton" }, outputs: { ackAllVisibleClickEvent: "ackAllVisibleClickEvent", alertListClickEvent: "alertListClickEvent", silenceClickEvent: "silenceClickEvent", goToAlertListClickEvent: "goToAlertListClickEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
8543
8555
|
}
|
|
8544
8556
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAlertMenu, decorators: [{
|
|
8545
8557
|
type: Component,
|
|
@@ -8553,6 +8565,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
8553
8565
|
type: Input
|
|
8554
8566
|
}], canAckAll: [{
|
|
8555
8567
|
type: Input
|
|
8568
|
+
}], showSilenceButton: [{
|
|
8569
|
+
type: Input
|
|
8570
|
+
}], showAlertListButton: [{
|
|
8571
|
+
type: Input
|
|
8556
8572
|
}], ackAllVisibleClickEvent: [{
|
|
8557
8573
|
type: Output
|
|
8558
8574
|
}], alertListClickEvent: [{
|