2.1.6 • Published 3 years ago

payment-ui-components v2.1.6

Weekly downloads
19
License
ISC
Repository
github
Last release
3 years ago

Payment UI Components

A library of common components built with Vue JS.

Available components

Looking for the Grid or AceEditor component? They have moved to payment-ui-bo-components

Making changes?

Remember to update the changelog

To use package fetched from @Bambora-npm-registry

//Edit your package.json and add to dependencies:
"payment-ui-components": "latest"

npm install  //install your project

Local development

cd to payment-ui-components
npm link

cd to your project
npm link payment-ui-components
npm start

//import the component(s) you wish to develop from payment-ui-components (NOTE not with the @bambora-scope)
import { Button } from 'payment-ui-components'

When you have made changes to payment-ui-components you have to transpile it

npm run build:all //transpiles everything in /src to ES2015 and puts it in /dist

If your app as Hot-modules-reload (HMR) enabled it will auto-reload and show your changes.