New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

patternfly-ng

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

patternfly-ng

A collection of PatternFly Angular components and other useful things to be shared.


Version published
Weekly downloads
172
decreased by-15.27%
Maintainers
2
Weekly downloads
 
Created
Issues
0

Build Status

Welcome to PatternFly-Ng. This is a library of common Angular components for use with the PatternFly reference implementation. Below is information on how to get started using PatternFly-ng. If you wish to contribute to PatternFly-ng, please go to our Contributions page.

Using PatternFly-ng In Your Application

This example demonstrates using the Angular-cli to get started with PatternFly-ng

  1. Installing angular-cli
    Note: you can skip this part if you already have generated an Angular application using ng-cli and webpack
npm i -g @angular/cli
ng new patternfly-ng-app
cd patternfly-ng-app
ng serve
  1. Install patternfly-ng

      npm install patternfly-ng --save
    
  2. Add patternfly-ng dependencies

  • install patternfly and ngx-bootstrap
  npm install patternfly ngx-bootstrap --save
  1. Add a patternfly-ng component
  • open src/app/app.module.ts and add
import { NotificationModule } from 'patternfly-ng';
...

@NgModule({
   ...
   imports: [NotificationModule, ... ],
    ... 
})
  • open .angular-cli.json and insert a new entry into the styles array
      "styles": [
         "../node_modules/patternfly/dist/css/patternfly.min.css",
         "../node_modules/patternfly/dist/css/patternfly-additions.min.css",
        "styles.css",
      ],
  • open src/app/app.component.html and add
<pfng-toast-notification
  [header]="'test header'"
  [message]="'this is a notification'"
  [showClose]="'true'"
  [type]="'success'">
</pfng-toast-notification>

Do you have a question?

There are a few things that can be done to resolve any questions or problems you might have.

FAQs

Package last updated on 30 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts