0.1.0 release
Ukijs 0.1.0 released. Grab it at http://static.ukijs.org/pkg/0.1.0/uki.js
What’s new
w3c drag and drop support. Uki views now support w3c drag and drop events, like ondragstart or drop. And it supports them in all browsers. See the screencast, demo and read the blog post to get more info on this feature.
multiselect attribute for List. All lists and tables now support selecting multiple rows with both keyboard and mouse (holding Shift or Ctrl/Option key). See the demo.
steps in slider. Slider supports stepped drag and drop with values attribute.
uki({ view: 'Slider', value: [1, 2, 3, 4, 5] ... } will produce a slider with 5 separate handle positions. See the demo.
event wrapper. All events now wrapped into uki.dom.Event class. This means that you now longer need e.domEvent to access native event properties. Plus all events now have e.preventDefault() and e.stopPropagation() in all browsers.
long views renamed. Views with ‘Horizontal’ and ‘Vertical’ in name were renamed to shorter version with ‘H’ and ‘V’. So ‘HorizontalFlow’ is now ‘HFlow’.
And of course lot’s of minor tweaks and fixes.