@railzai/railz-visualizations-angular
v0.0.8-alpha.35
Published
Accounting Data as a Service™ is the solution that makes sense of your business customers' financial data.
Downloads
201
Readme
Accounting Data as a Service™ is the solution that makes sense of your business customers' financial data.
Accounting Data as a Service™ Visualizations Angular
This is an angular wrapper for @railzai/railz-visualization
, it was generated with Angular CLI version 13.2.0.
To Install
With NPM:
npm install @railzai/railz-visualizations-react
With Yarn:
yarn add @railzai/railz-visualizations-react
Local Development
To build and test your components locally, you will need to link the packages together. This is a replacement for publishing packages to npm that allows you to develop and test locally.
To do this, we’ll use the npm link command, follow the steps below to setup local environment.
- Clone this repository
- Install dependencies using yarn install or npm install
- Build the packages/components library and create a symlink to the library.
npm run build
npm link
Link Your Packages
With the symlink created, the Angular component library will need to consume the stencil component library.
Go to packages/components-angular
folder and run the below:
npm link @railzai/railz-visualizations
And with that, the angular component library is linked to the stencil component library are linked together.
In your angular component library, you need to create its own symlink.
npm run build
npm link
Usage
In your own Angular Application, you can run the below to link both libraries
npm link @railzai/railz-visualizations-angular
To make use of the Angular component library in your Angular application, set up your module file to import the visualizations module.
import { RailzVisualizationsModule } from '@railzai/railz-visualizations-angular/dist';