personity-personality-styles-list
TypeScript icon, indicating that this package has built-in type declarations

3.16.0 • Public • Published

blank - Angular library built with ❤ using ngx-library yeoman generator.

npm version Build Status Coverage Status dependency Status devDependency Status Greenkeeper Badge

Demo

View all the directives in action at https://quasiunafantasia.github.io/blank

Dependencies

  • Angular (requires Angular 2 or higher, tested with 2.0.0)

Installation

Install above dependencies via npm.

Now install personity-personality-styles-list via:

npm install --save personity-personality-styles-list

SystemJS

Note:If you are using SystemJS, you should adjust your configuration to point to the UMD bundle. In your systemjs config file, map needs to tell the System loader where to look for personity-personality-styles-list:

map: {
  'personity-personality-styles-list': 'node_modules/personity-personality-styles-list/bundles/personity-personality-styles-list.umd.js',
}

Once installed you need to import the main module:

import { LibModule } from 'personity-personality-styles-list';

The only remaining part is to list the imported module in your application module. The exact method will be slightly different for the root (top-level) module for which you should end up with the code similar to (notice LibModule .forRoot()):

import { LibModule } from 'personity-personality-styles-list';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [LibModule.forRoot(), ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import LibModule:

import { LibModule } from 'personity-personality-styles-list';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [LibModule, ...], 
})
export class OtherModule {
}

Usage

License

Copyright (c) 2017 Sasha. Licensed under the MIT License (MIT)

Readme

Keywords

Package Sidebar

Install

npm i personity-personality-styles-list

Weekly Downloads

5

Version

3.16.0

License

MIT

Last publish

Collaborators

  • sashqa