10.0.7 • Published 5 years ago

@full-fledged/ng-commons v10.0.7

Weekly downloads
3
License
-
Repository
-
Last release
5 years ago

####Install dependencies

npm i --save @angular/cdk @angular/material @angular/material-moment-adapter

####Update angular.json

{
  "styles": [
    "node_modules/@full-fledged/ng-commons/scss/ng-commons.scss",
    "src/styles/styles.scss"
  ],
  "scripts": [
    "node_modules/chart.js/dist/Chart.js",
    "node_modules/hammerjs/hammer.min.js"
  ]
}

##Include in core and shared module

@NgModule({
  exports: [
    NgCommonsModule
  ]
})
export class SharedModule {
}


@NgModule({
  imports: [
    NgCommonsModule.forRoot(),
    BrowserAnimationsModule
  ]
})
export class CoreModule {
}