Skip to content

Collab UI framework for Cisco Collaboration Design Angular (7+) applications

License

Notifications You must be signed in to change notification settings

ArthusLiang/collab-ui-angular

 
 

Repository files navigation

Collab UI Angular

license

@collab-ui/angular

Collab UI Angular is a UI framework for implementing Cisco Collaboration Design into web apps and sites.

Table of Contents

Install

Install and manage the Collab UI Angular using NPM. You may use yarn or npm. By default, yarn/npm installs packages to node_modules/.

npm install @collab-ui/angular --save

or

yarn add @collab-ui/angular

Usage

NgModule

Import the components that you would like to use in the NgModule and declare them in the "imports" using the forRoot() function.

import BadgeModule from '@collab-ui/angular/lib/badge';
// or
import { BadgeModule } from '@collab-ui/angular';

@NgModule({
  imports: [
    BadgeModule.forRoot()
  ]
})

Then import the components into the components where you will use them.

import BadgeComponent from '@collab-ui/angular/lib/badge';
//or
import { BadgeComponent } from '@collab-ui/angular';

Contribute

See the contributing file!

PRs accepted.

License

© 2014-2018 Cisco and/or its affiliates. All Rights Reserved.

About

Collab UI framework for Cisco Collaboration Design Angular (7+) applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 94.2%
  • JavaScript 3.6%
  • HTML 2.0%
  • CSS 0.2%