├── LICENSE ├── README.md ├── bower.json └── index.js /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2015 the AngularUI Team, http://angular-ui.github.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UI.Utils 2 | 3 | The companion suite for AngularJS. 4 | 5 | This package is simply a convenient way to include all of what was previously ui-utils. 6 | At least, the parts that still seemed relevant. This repository is kept lite. 7 | 8 | ## Includes 9 | 10 | * [ui-validate](https://github.com/angular-ui/ui-validate) 11 | * [ui-indeterminate](https://github.com/angular-ui/ui-indeterminate) 12 | * [ui-mask](https://github.com/angular-ui/ui-mask) 13 | * [ui-event](https://github.com/angular-ui/ui-event) 14 | * [ui-scrollpoint](https://github.com/angular-ui/ui-scrollpoint) 15 | * [ui-scroll](https://github.com/angular-ui/ui-scroll) 16 | * [ui-uploader](https://github.com/angular-ui/ui-uploader) 17 | 18 | ## Requirements 19 | 20 | * AngularJS 21 | 22 | ## Usage 23 | 24 | `bower install --save angular-ui-utils` 25 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "AngularUI Team", 3 | "name": "angular-ui-utils", 4 | "description": "AngularUI Utilities - Companion Suite for AngularJS", 5 | "homepage": "http://angular-ui.github.com", 6 | "main": "./index.js", 7 | "license": "MIT", 8 | "dependencies": { 9 | "angular-ui-scroll": "latest", 10 | "angular-ui-scrollpoint": "latest", 11 | "angular-ui-event": "latest", 12 | "angular-ui-mask": "latest", 13 | "angular-ui-validate": "latest", 14 | "angular-ui-indeterminate": "latest", 15 | "angular-ui-uploader": "latest" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | angular.module('ui.utils', [ 2 | 'ui.scroll', 3 | 'ui.scrollpoint', 4 | 'ui.event', 5 | 'ui.mask', 6 | 'ui.validate', 7 | 'ui.indeterminate', 8 | 'ui.uploader' 9 | ]); 10 | --------------------------------------------------------------------------------