@sanger-surveillance-operations/ui-library
v2.8.9
Published
Install the component library as a dependency using `npm`.
Downloads
22
Keywords
Readme
Install
Install the component library as a dependency using npm
.
npm install @sanger-surveillance-operations/ui-library
Register
Register the components with Vue and import styles to make them globally available in your app.
import Vue from 'vue'
import SangerComponents from '@sanger-surveillance-operations/ui-library'
import '@sanger-surveillance-operations/ui-library/dist/ui-library.css'
Vue.use(SangerComponents)
Use
Now you can use them in your own Vue components.
<template>
<div>
<sa-button text="A button" />
</div>
</template>
Contribute
Project setup
npm install
Adding a component
- Create a new component folder by copying the
_component-template
folder - Rename the component, test files and their contents by replacing
SaComponent
withSa[YourComponentName]
following the structure of the other components. - Add the component to
src/components/index.js
Start the development server
npm start
Build for production
npm run build
Lint and fix files
npm run lint
Publish a new version
npm login # if not already logged in
npm version <new version>
git push
npm publish
A production build is automatically created before publishing so there's no need
to explicitly run npm run build
.