@oicl/openbridge-webcomponents-ng 2.0.0-next.11 → 2.0.0-next.13
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.
|
@@ -78218,6 +78218,11 @@ class ObcAlertListPageSmall {
|
|
|
78218
78218
|
// from an event, ex: e.value
|
|
78219
78219
|
this.rowClickEvent.emit(e);
|
|
78220
78220
|
});
|
|
78221
|
+
this._el.addEventListener('silence-click', (e) => {
|
|
78222
|
+
// TODO(justinfagnani): we need to let the element say how to get a value
|
|
78223
|
+
// from an event, ex: e.value
|
|
78224
|
+
this.silenceClickEvent.emit(e);
|
|
78225
|
+
});
|
|
78221
78226
|
}
|
|
78222
78227
|
set hasShelved(v) {
|
|
78223
78228
|
this._ngZone.runOutsideAngular(() => (this._el.hasShelved = v));
|
|
@@ -78252,8 +78257,9 @@ class ObcAlertListPageSmall {
|
|
|
78252
78257
|
ackAllVisibleClickEvent = new EventEmitter();
|
|
78253
78258
|
ackClickEvent = new EventEmitter();
|
|
78254
78259
|
rowClickEvent = new EventEmitter();
|
|
78260
|
+
silenceClickEvent = new EventEmitter();
|
|
78255
78261
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAlertListPageSmall, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
78256
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcAlertListPageSmall, isStandalone: true, selector: "obc-alert-list-page-small", inputs: { hasShelved: "hasShelved", selectedMode: "selectedMode", alerts: "alerts", showTime: "showTime", timeFormatter: "timeFormatter" }, outputs: { ackAllVisibleClickEvent: "ackAllVisibleClickEvent", ackClickEvent: "ackClickEvent", rowClickEvent: "rowClickEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
78262
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcAlertListPageSmall, isStandalone: true, selector: "obc-alert-list-page-small", inputs: { hasShelved: "hasShelved", selectedMode: "selectedMode", alerts: "alerts", showTime: "showTime", timeFormatter: "timeFormatter" }, outputs: { ackAllVisibleClickEvent: "ackAllVisibleClickEvent", ackClickEvent: "ackClickEvent", rowClickEvent: "rowClickEvent", silenceClickEvent: "silenceClickEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
78257
78263
|
}
|
|
78258
78264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAlertListPageSmall, decorators: [{
|
|
78259
78265
|
type: Component,
|
|
@@ -78279,6 +78285,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
78279
78285
|
type: Output
|
|
78280
78286
|
}], rowClickEvent: [{
|
|
78281
78287
|
type: Output
|
|
78288
|
+
}], silenceClickEvent: [{
|
|
78289
|
+
type: Output
|
|
78282
78290
|
}] } });
|
|
78283
78291
|
|
|
78284
78292
|
/* eslint-disable import/extensions */
|