Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deebloo/blueangularui
UI Component library for AngularJS using twitter bootstrap at the base
https://github.com/deebloo/blueangularui
Last synced: 15 days ago
JSON representation
UI Component library for AngularJS using twitter bootstrap at the base
- Host: GitHub
- URL: https://github.com/deebloo/blueangularui
- Owner: deebloo
- Created: 2014-06-01T20:13:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:45:46.000Z (about 1 year ago)
- Last Synced: 2024-10-31T16:59:35.651Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 243 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Blue Angular Ui
=============A ui component library for angular based on twitter bootstrap elements.
This readme will be updated as more components are added.#### Navbar:
NOTE: in order for the active class to be added automatically $locationProvider needs to be set in your application configuration.
Ex. $locationProvider.html5Mode(true).hashPrefix('!');```HTML
```
| Attribute | Type | Definition
| ------------- | ------------- | ------------- |
| data | array of objects | 'title' and 'link 'required as object attributes |
| navbar-title | string | if set title will display in the navbar, if not nothing will be displayed. |#### Bootstrap Grid:
```HTML
```
| Attribute | Type | Definition
| ------------- | ------------- | ------------- |
| data | array of objects | accepts standard JSON array |
| dataModel | array of objects | Define the columns to be displayed. Set the column title, the name of the property and the type |#### Searchable Option Menu:
```HTML
```
| Attribute | Type | Definition
| ------------- | ------------- | ------------- |
| option-title | string | title of the option menu |
| data | array of objects | 'title' required as an object attribute |
| searchable | bool | enables filtering |
| item-click | method | define a method to be called when an option is clicked. Method accepts one argument containing the clicked angular element (usable with jquery lite) |