Novo Elements by Bullhorn
An Angular UI component library and Design System built by Bullhorn.
Features
- Robust Component Library built with Angular
- Built to increase product development speed
- Consistent Design principles with tokens
- Open-Source with documentation and usage guidelines
- Written in TypeScript for static types support and intellisense.
- Built in Light and Dark theme.
- Internationalization support.
Quick Start
It is recommended to use the @angular/cli
to install. It not only makes
development easier, but also allows you to take advantage of the rich ecosystem of angular packages and
tooling.
$ ng new PROJECT_NAME
$ cd PROJECT_NAME
$ ng add novo-elements
More information about
@angular/cli
here.
You can also install novo-elements
with npm or yarn
$ npm install novo-elements
Usage
Import the component modules you want to use into your app.module.ts
file and feature modules.
import { NovoButtonModule } from 'novo-elements/button';
@NgModule({
imports: [ NovoButtonModule ]
})
export class AppModule {
}
@angular/cli
users won't have to worry about the things below but it's good to know.
And import style and SVG icon assets file link in angular.json
.
{
"assets": [
+ {
+ "glob": "**/*",
+ "input": "./node_modules/@bullhorn/bullhorn-icons/icons/",
+ "output": "/assets/"
+ }
],
"styles": [
+ "node_modules/novo-elements/styles/novo-elements.scss"
]
}
Contributors
License
Copyright (c) forever Bullhorn.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.