osio-ngx-framework
TypeScript icon, indicating that this package has built-in type declarations

0.14.0 • Public • Published

osio-ngx-framework

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

Using osio-ngx-framework In Your Application

This example demonstrates using the Angular-cli to get started with osio-ngx-framework

  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 osio-ngx-framework-app
cd osio-ngx-framework-app
ng serve
  1. Install osio-ngx-framework

      npm install osio-ngx-framework --save
  2. Add osio-ngx-framework dependencies

  • install patternfly and ngx-bootstrap
  npm install patternfly ngx-bootstrap --save
  1. Add a osio-ngx-framework component
  • open src/app/app.module.ts and add
import { NotificationModule } from 'osio-ngx-framework';
...
 
@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?

Package Sidebar

Install

npm i osio-ngx-framework

Weekly Downloads

4

Version

0.14.0

License

Apache-2.0

Last publish

Collaborators

  • kleinhenz