We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19bb8a6 commit 688c392Copy full SHA for 688c392
src/slider/SliderWebcomponent.ts
@@ -228,6 +228,8 @@ export class SliderWebcomponent extends BaseCustomWebComponentConstructorAppend
228
// Update input values and range progress
229
this._inputs[0].value = minVal.toString();
230
this._inputs[1].value = maxVal.toString();
231
+ this.valueMin = minVal;
232
+ this.valueMax = maxVal;
233
rangevalue.style.left = `${(minVal / parseInt(this._rangeInputs[0].max)) * 100}%`;
234
rangevalue.style.right = `${100 - (maxVal / parseInt(this._rangeInputs[1].max)) * 100}%`;
235
}
0 commit comments