v1.7.0
版本发布时间: 2017-04-13 23:54:54
cibernox/ember-power-select最新发布版本:v8.3.1(2024-09-09 14:37:17)
I head that summer is coming a it's time to start doing diet, right?
Well, Ember Power Select is doing that! 🎉 Starting with 1.7.0 the addon is 100% jQuery-free. You can the addon and the test helper that it provides on jQuery-free apps.
As a consequence of this CSS selectors passed to test helpers that end up in :eq()
are now deprecated. They are still supported but will be removed in 1.8.0. Of you want to take the NTH option, now the selectChoose
helper accepts a third numeric argument that can be used for the same thing you used to use :eq(number)
.
selectChoose('.language-picker', '.ember-power-select-option', 5); // It's going to select the 6th element that matches `.ember-power-select-option` query.