All Projects → bullhorn → Novo Elements

bullhorn / Novo Elements

Licence: mit
UI Repository for Bullhorn's Novo Theme

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Novo Elements

Truly Ui
Truly-UI - Web Angular UI Components for Desktop Applications (Electron, NW, APP JS)
Stars: ✭ 195 (+230.51%)
Mutual labels:  ui-components, angular2
Numl
A UI Design Language, WC UI Library, and Runtime CSS Framework for rapidly building interfaces that follow your Design System 🌈
Stars: ✭ 229 (+288.14%)
Mutual labels:  framework, ui-components
Casing
The UI Framework for Framer Classic. Manages data, components and views
Stars: ✭ 83 (+40.68%)
Mutual labels:  framework, ui-components
Css
The CSS design system that powers GitHub
Stars: ✭ 10,670 (+17984.75%)
Mutual labels:  framework, ui-components
Igniteui Angular
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps.
Stars: ✭ 433 (+633.9%)
Mutual labels:  ui-components, angular2
Angular Development With Primeng
Code samples from the book "Angular UI Development with PrimeNG"
Stars: ✭ 159 (+169.49%)
Mutual labels:  ui-components, angular2
Components
MobileUI was created thinking of making your hybrid application faster and smaller since you only install what you are really going to use for UI.
Stars: ✭ 125 (+111.86%)
Mutual labels:  framework, ui-components
Paper Kit 2 Angular
Free Bootstrap 4 UI Kit for Angular 2+
Stars: ✭ 133 (+125.42%)
Mutual labels:  ui-components, angular2
Tonic
A Low Profile Component Framework. Stable, Minimal, Auditable, and Build-Tool-Free.
Stars: ✭ 265 (+349.15%)
Mutual labels:  framework, ui-components
Ax Boot Framework
Full Stack Java Web Application Framework with Java & HTML5
Stars: ✭ 244 (+313.56%)
Mutual labels:  framework, ui-components
A17t
An atomic design toolkit for pragmatists
Stars: ✭ 236 (+300%)
Mutual labels:  framework, ui-components
Awesome Ui Component Library
Curated list of framework component libraries for UI styles/toolkit
Stars: ✭ 702 (+1089.83%)
Mutual labels:  framework, ui-components
Ngx Admin
Customizable admin dashboard template based on Angular 10+
Stars: ✭ 23,286 (+39367.8%)
Mutual labels:  framework, angular2
Zeva
a modern and minimalist ui framework for building responsive and modern frontends
Stars: ✭ 57 (-3.39%)
Mutual labels:  framework, ui-components
Objcxx
Stars: ✭ 54 (-8.47%)
Mutual labels:  framework
Apprun
AppRun is a JavaScript library for developing high-performance and reliable web applications using the elm inspired architecture, events and components.
Stars: ✭ 1,087 (+1742.37%)
Mutual labels:  framework
Root Bootstrap 4 Admin Template With Angularjs Angular 2 Support
Root is Boostrap 4 Admin Template with Angular 2 and AngularJS support
Stars: ✭ 54 (-8.47%)
Mutual labels:  angular2
Criterion
A cross-platform C and C++ unit testing framework for the 21st century
Stars: ✭ 1,073 (+1718.64%)
Mutual labels:  framework
Bottomsheetpickers
Third-party date and time pickers for Android.
Stars: ✭ 1,099 (+1762.71%)
Mutual labels:  ui-components
Tokamak
SwiftUI-compatible framework for building browser apps with WebAssembly and native apps for other platforms
Stars: ✭ 1,083 (+1735.59%)
Mutual labels:  ui-components

NOVO Elements npm version Build Status Coverage Status

Gitter Dependency Status devDependency Status

Dependencies

Quick Start

# Clone the project
git clone [email protected]:bullhorn/novo-elements.git

# Change directory
cd novo-elements

# Install
npm install

# Start (you will need two terminals)
npm run build (builds the library, alternatively you can use npm run build:watch for live-reload)
npm start (starts the demo)

# Access the Demo in your browser at
http://localhost:4200/

Integrating into a project

# Install the module from NPM
npm install --save novo-elements

Depending on what system you are using (SystemJS, Webpack, etc..) the setup will vary.

If using SCSS/SASS you will need to include the following includes: node_modules/novo-elements/lib.

Build/Release/Publish

# Manually update the projects/*/package.json to the version you want
# TAG
# npm test
# npm run lint
# npm run build
# CD INTO EACH PROJECT IN DIST
# npm publish

Building Examples

All examples can be added to the appropriate directory in the novo-examples project. Each markdown file will be converted to a demo page and a route will automatically be added to the demo. You can import any example project by using the angular selector, or inject it using the code-example tag, ie. <code-example example="demo-name"></code-example>.

# Compile markdown, generate routes, and AOT build the project
npm run build:examples

# Automatically rebuild changes to the examples project
npm run build:examples:watch

Customizing Labels

With Novo Elements there are a few hard coded labels throughout the library. To override these labels with your own, you will simply extend the NovoLabelService and override any labels that you wish.

To make Angular2 use this new class over the default one you can provide in the bootstrapping of your application as a provider.

{ provide: NovoLabelService, useClass: MyLabelService }

To use the default labels, you will need to provide the NOVO_ELEMENTS_LABELS_PROVIDERS via

import {NOVO_ELEMENTS_LABELS_PROVIDERS} from 'novo-elements';
bootstrap(MyApp [..NOVO_ELEMENTS_LABELS_PROVIDERS]);

Contribute

There are many ways to contribute to our OpenSource projects.

TL;DR: Fork this repository, make any required change and then submit a PR :)

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].