You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New tests are added to cover using 'effective' properties for
calculation instead of normaliziations of the real ones.
Added cozy styles and set as default while the compact css vars are now
moved to sizes-parameters.css files.
Input event is now fixed and fired only after the current value is
changed by user interaction.
Updating the labels based on the other properties is fixed - labels are
now getting re-created if the one of the other component's properties is updated.
Tick-marks bug when sometimes the tick-mars are hidden under the parent's
background is fixed, the tick mark DOM element no longer has a z-index
set to -1.
assert.strictEqual(rangeSlider.getProperty("min"),100,"min property itself should not be normalized");
193
+
assert.strictEqual(rangeSlider.getProperty("max"),10,"max property itself should not be normalized");
194
+
assert.strictEqual(rangeSlider.getProperty("startValue"),10,"startValue property should be within the boundaries of the effective (swapped) min and max props");
195
+
});
196
+
173
197
it("Should keep the current values between the boundaries of min and max properties",()=>{
assert.strictEqual(eventResultRangeSlider.getProperty("endValue"),4,"Change event is not fired if the value is the same as before the start of the action");
0 commit comments