@oicl/openbridge-webcomponents-ng 2.0.0-next.10 → 2.0.0-next.12
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.
|
@@ -15007,9 +15007,27 @@ class ObcSliderDouble {
|
|
|
15007
15007
|
get labelWidth() {
|
|
15008
15008
|
return this._el.labelWidth;
|
|
15009
15009
|
}
|
|
15010
|
+
set showLeftReadout(v) {
|
|
15011
|
+
this._ngZone.runOutsideAngular(() => (this._el.showLeftReadout = v));
|
|
15012
|
+
}
|
|
15013
|
+
get showLeftReadout() {
|
|
15014
|
+
return this._el.showLeftReadout;
|
|
15015
|
+
}
|
|
15016
|
+
set showRightReadout(v) {
|
|
15017
|
+
this._ngZone.runOutsideAngular(() => (this._el.showRightReadout = v));
|
|
15018
|
+
}
|
|
15019
|
+
get showRightReadout() {
|
|
15020
|
+
return this._el.showRightReadout;
|
|
15021
|
+
}
|
|
15022
|
+
set hugContainer(v) {
|
|
15023
|
+
this._ngZone.runOutsideAngular(() => (this._el.hugContainer = v));
|
|
15024
|
+
}
|
|
15025
|
+
get hugContainer() {
|
|
15026
|
+
return this._el.hugContainer;
|
|
15027
|
+
}
|
|
15010
15028
|
valueEvent = new EventEmitter();
|
|
15011
15029
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcSliderDouble, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
15012
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcSliderDouble, isStandalone: true, selector: "obc-slider-double", inputs: { low: "low", high: "high", min: "min", max: "max", step: "step", stepClick: "stepClick", variant: "variant", allowSeeking: "allowSeeking", disabled: "disabled", seekingSpeed: "seekingSpeed", labelUnit: "labelUnit", labelDecimals: "labelDecimals", labelWidth: "labelWidth" }, outputs: { valueEvent: "valueEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
15030
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcSliderDouble, isStandalone: true, selector: "obc-slider-double", inputs: { low: "low", high: "high", min: "min", max: "max", step: "step", stepClick: "stepClick", variant: "variant", allowSeeking: "allowSeeking", disabled: "disabled", seekingSpeed: "seekingSpeed", labelUnit: "labelUnit", labelDecimals: "labelDecimals", labelWidth: "labelWidth", showLeftReadout: "showLeftReadout", showRightReadout: "showRightReadout", hugContainer: "hugContainer" }, outputs: { valueEvent: "valueEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
15013
15031
|
}
|
|
15014
15032
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcSliderDouble, decorators: [{
|
|
15015
15033
|
type: Component,
|
|
@@ -15045,6 +15063,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
15045
15063
|
type: Input
|
|
15046
15064
|
}], labelWidth: [{
|
|
15047
15065
|
type: Input
|
|
15066
|
+
}], showLeftReadout: [{
|
|
15067
|
+
type: Input
|
|
15068
|
+
}], showRightReadout: [{
|
|
15069
|
+
type: Input
|
|
15070
|
+
}], hugContainer: [{
|
|
15071
|
+
type: Input
|
|
15048
15072
|
}], valueEvent: [{
|
|
15049
15073
|
type: Output
|
|
15050
15074
|
}] } });
|
|
@@ -78194,6 +78218,11 @@ class ObcAlertListPageSmall {
|
|
|
78194
78218
|
// from an event, ex: e.value
|
|
78195
78219
|
this.rowClickEvent.emit(e);
|
|
78196
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
|
+
});
|
|
78197
78226
|
}
|
|
78198
78227
|
set hasShelved(v) {
|
|
78199
78228
|
this._ngZone.runOutsideAngular(() => (this._el.hasShelved = v));
|
|
@@ -78228,8 +78257,9 @@ class ObcAlertListPageSmall {
|
|
|
78228
78257
|
ackAllVisibleClickEvent = new EventEmitter();
|
|
78229
78258
|
ackClickEvent = new EventEmitter();
|
|
78230
78259
|
rowClickEvent = new EventEmitter();
|
|
78260
|
+
silenceClickEvent = new EventEmitter();
|
|
78231
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 });
|
|
78232
|
-
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 });
|
|
78233
78263
|
}
|
|
78234
78264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAlertListPageSmall, decorators: [{
|
|
78235
78265
|
type: Component,
|
|
@@ -78255,6 +78285,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
78255
78285
|
type: Output
|
|
78256
78286
|
}], rowClickEvent: [{
|
|
78257
78287
|
type: Output
|
|
78288
|
+
}], silenceClickEvent: [{
|
|
78289
|
+
type: Output
|
|
78258
78290
|
}] } });
|
|
78259
78291
|
|
|
78260
78292
|
/* eslint-disable import/extensions */
|