Contains common UI components powered by angular. These components are designed to be used in cqube (mobile app, web portal, offline desktop app) to drive reusability, maintainability hence reducing the redundant development effort significantly.
For help getting started with a new Angular app, check out the Angular CLI. For existing apps, follow these steps to begin using .
npm install cqube-library --save
Add following under architect.build.assets
{
...
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
...
...
"assets": [
...
...
{
"glob": "**/*.*",
"input": "./node_modules/cqube-library/assets",
"output": "./assets/cqube-library"
}
],
...
...
},
Import the NgModule for each component you want to use:
import { CqubeLibraryModule } from 'cqube-library';
@NgModule({
...
imports: [CqubeLibraryModule],
...
})
export class TestAppModule { }