@britecore/bc-design-system

A Component Library for Vue.js.

Usage no npm install needed!

<script type="module">
  import britecoreBcDesignSystem from 'https://cdn.skypack.dev/@britecore/bc-design-system';
</script>

README

BriteCore Design System

A VueJS-based component library for BriteCore user interfaces.

Contacts

Saad Siddiqui Engineer

Communication

Reach out to the maintainers on #pd-design-system-int

Additional Links

Getting Started

Installation and Basic Usage

Note: BriteCore Design System is a private NPM module and requires a token to install. To get started, you'll need to add BriteCore-UI's .npmrc file to your project (https://github.com/IntuitiveWebSolutions/BriteCore-UI/blob/master/.npmrc).

  1. Add the package to your project: yarn add @britecore/bc-design-system

  2. Import BriteCore Design System in main.js:

    import Vue from 'vue';
    import BcComponents from '@britecore/bc-design-system';
    import '@britecore/bc-design-system/lib/theme-chalk/index.css';
    import App from './App.vue';
    
    Vue.use(BcComponents);
    
    new Vue({
      el: '#app',
      render: h => h(App)
    });
    

Contributing

BriteCore Needs :point_right: YOU :point_left:

If you can't find what you're looking for, or you spot a bug, we strongly encourage you to submit a PR. The Design System is a resource for all of BriteCore and as such we're all invested in making it better. The Frontend Team is happy to help you with your pull request submission. We want to make sure it's an easy, quick, and painless process.

If you're ready to start contributing head over to the Contributing doc. If you get stuck, or have any questions feel free to reach out. See the contact information above.