Angular bindings and UI Components for Salesforce Lightning Design System
We have working components for many of the Lightning Design Components. The dependencies are not very lightweight and the build process is not very clean yet but that should be around the corner.
For now you can view demo's of the available lightning components here:
https://angular-lightning.herokuapp.com/
Use the following to define your module:
angular.module('angular-lightning.mymodule', [])
.controller(['dependency', function(dependency) {
// some code here
}]);
main.js
so that it's included in the build...
// this just pulls in all the submodules
angular.module('angular-lightning', [
'angular-lightning.datepicker',
...
'angular-lightning.progress',
'angular-lightning.sticky',
'angular-lightning.mymodule'
]);
<script src="https://github.com/mbowen000/angular-lightning/raw/master/scripts/utils/tooltip.js"></script>
<script src="https://github.com/mbowen000/angular-lightning/raw/master/scripts/utils/tabs.js"></script>
...
<script src="https://github.com/mbowen000/angular-lightning/raw/master/scripts/utils/mymodule.js"></script>
mike@smbhd.com