diff --git a/dist/four-speed-fan-button-row.js b/dist/four-speed-fan-button-row.js index 3d7e82c..ab4945f 100644 --- a/dist/four-speed-fan-button-row.js +++ b/dist/four-speed-fan-button-row.js @@ -370,22 +370,22 @@ class CustomFourSpeedPercentRow extends LitElement { this._rightState = (high === 'on' && allowDisable); this._leftColor = offcolor; this._midLeftColor = lowcolor; - this._midColor = medlowcolor; + this._middleColor = medlowcolor; this._midRightColor = medcolor; this._rightColor = hicolor; this._leftText = offtext; this._midLeftText = lowtext; - this._midText = medlowtext; + this._middleText = medlowtext; this._midRightText = medtext; this._rightText = hitext; this._leftName = offname; this._midLeftName = lowname; - this._midName = medlowname; + this._middleName = medlowname; this._midRightName = medname; this._rightName = hiname; this._hideLeft = hideoff; this._hideMidLeft = nohide; - this._hideMid = hidemedlow; + this._hideMiddle = hidemedlow; this._hideMidRight = hidemedium; this._hideRight = nohide; } else { @@ -396,22 +396,22 @@ class CustomFourSpeedPercentRow extends LitElement { this._rightState = (offstate == 'on' && allowDisable); this._leftColor = hicolor; this._midLeftColor = medcolor; - this._midColor = medlowcolor; + this._middleColor = medlowcolor; this._midRightColor = lowcolor; this._rightColor = offcolor; this._leftText = hitext; this._midLeftText = medtext; - this._midText = medlowtext; + this._middleText = medlowtext; this._midRightText = lowtext; this._rightText = offtext; this._leftName = hiname; this._midLeftName = medname; - this._midName = medlowname; + this._middleName = medlowname; this._midRightName = lowname; this._rightName = offname; this._hideRight = hideoff; this._hideMidRight = nohide; - this._hideMid = hidemedlow; + this._hideMiddle = hidemedlow; this._hideMidLeft = hidemedium; this._hideLeft = nohide; }