@oicl/openbridge-webcomponents-ng 2.0.0-next.10 → 2.0.0-next.11

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
  }] } });