0.0.1 • Published 6 years ago

grants-ui-commons v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

GrantsUiCommons

This project was generated with Angular CLI version 1.5.0.

npm version Known Vulnerabilities npm build npm codecov

NPM

Description

Highly configurable Angular 5 based common UI components for Grants.Gov project. Compatible Angular 2+.

Online demo is here

Installation

To install this component to an external project, follow the procedure:

  1. npm install grants-ui-commons --save

  2. Add GrantsUiCommonsModule import to your @NgModule like example below

    import { NgModule } from '@angular/core';
    import { MyTestApp } from './my-test-app';
    import { GrantsUiCommonsModule } from 'grants-ui-commons';
    
    @NgModule({
        imports:      [ GrantsUiCommonsModule ],
        declarations: [ MyTestApp ],
        bootstrap:    [ MyTestApp ]
    })
    export class MyTestAppModule {}

Usage

To be updated...