0.14.0 • Published 6 years ago

osio-ngx-framework v0.14.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
6 years ago

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
  2. Install osio-ngx-framework

      npm install osio-ngx-framework --save
  3. 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?