Skip to content

Version 2.1.0

Latest
Compare
Choose a tag to compare
@craigh411 craigh411 released this 03 Nov 12:55

Release Notes

In 2.1.0 support has been added for rtl (right-to-left) in all built in components through the use of the new rtl prop.

<star-rating :rtl="true" :increment="0.5"></star-rating>

In previous versions programmers using rtl would experience the raters displaying in left-to-right when using increments smaller than 1 (see Issue #10 )

There have also been some internal changes to the class names to avoid name clashes, so if you're targeting them for any reason, you will need to update the class names as follows:

Old Class Name New Class Name
.rating item .vue-rate-it-rating-item
.pointer .vue-rate-it-pointer
.rating .vue-rate-it-rating
.inline .vue-rate-it-inline
.rating-text .vue-rate-it-rating-text
.rating-container .vue-rate-it-rating-container

This version also fixes an issue with a 'dead' column of pixels that allowed users to reset the rating to 0 when clicked.