Releases: aurelia-ui-toolkits/aurelia-kendoui-bridge
0.12.1
0.12.0
0.12.0 (2016-08-10)
Bug Fixes
- dependencies: updated dependencies to 1.0.0 (8390b4b)
- draggable: fixed typo in class name (11abd1b)
- dts: resolved dts error (6e02eff)
- toolbar: support require statements (7732406)
- treeview: support require statements (579075e)
- util: throw error when au property is not foun on an element (9c4cc7f)
Features
- grid: support rowTemplate (e53a2a8)
1.0.0-beta.1.0.6
1.0.0-beta.1.0.6 (2016-08-09)
Bug Fixes
1.0.0-beta.1.0.5
1.0.0-beta.1.0.4
Update README.md
1.0.0-beta.1.0.3
1.0.0-beta.1.0.3 (2016-08-01)
Features
1.0.0-beta.1.0.2
chore(prepare-release): release 1.0.0-beta.1.0.2
1.0.0-beta.1.0.1
*** PRERELEASE ***
This prerelease version contains a couple of breaking changes.
In order to allow developers to use the bridge with any module loader, or not to use a module loader at all, the bridge is no longer loading Kendo. You can now add <script src="kendo.all.min.js"></script>
to index.html and you don't need to configure your module loader to load Kendo. If you'd like to use a module loader then you still can, you just have to use import 'kendo.<control>.min';
in your view-model.
If you are using the builder pattern in main.js, then some functions have been renamed:
.kendoButtonGroup() -> .kendoMobileButtonGroup()
.kendoCombobox() -> .kendoComboBox()
.kendoScrollView() -> .kendoMobileScrollView()
.kendoSwitch() -> .kendoMobileSwitch()
.kendoToolbar() -> .kendoToolBar()
Using kendo.core() or kendo.pro() is no longer the recommended way to load our wrappers. You still can, but we don't recommend this as it adds seconds to your application's load time. The recommended way to load wrappers is via <require from="aurelia-kendoui-bridge/some/wrapper"></require>