grants-ui-commonsdeprecated

A Grants.Gov package for common UI components

Usage no npm install needed!

<script type="module">
  import grantsUiCommons from 'https://cdn.skypack.dev/grants-ui-commons';
</script>

README

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...