@felix-health/vue-components-vue3 v2.12.5
Felix Health Vue Component Library
A Vue CLI project that contains all of Felix Health's vue components and documentation for those components.
To consume in a project
npm i @felix-health/vue-components-vue3Currently this project depends on TailwindCSS (and our Tailwind design system).`
Import the library css into your main css file:
@import '@felix-health/vue-components-vue3/dist/style.css';- Import all of the components in your main js file:
 
import * as FelixComponents from '@felix-health/vue-components-vue3';
// Global registration in your main.js/App.vue file
Object.entries(FelixComponents).forEach((name, component) => {
  Vue.component([name, component]);
});Note that some components depend on things like the document or window object to work. We have an option to separate component imports between ones that work on server side, and ones that work on the client so that you can deal with them differently. This is helpful in frameworks like Nuxt where you want to be able to register compatable components on the server. You can import them like this:
import * as ServerComponents from '@felix-health/vue-components/dist/server.js';
import * as ClientComponents from '@felix-health/vue-components/dist/client.js';Add a new component
- make sure you are up to date with the latest 
mainbranch - add the component under a 
v3directory under the corresponding component directory (e.g.src/components/accordion/v3/) - export your component in 
vue3Components.jsunderserver-buildorclient-buildfolder accordingly 
Branch naming
- For vue-3 only changes (i.e. merging to 
vue-3-onlybranch), prefix the branch name withv3_to skip styleguidist preview step in github action 
To add / update a component
To update any existing shared components (i.e. components that are not in this list)
- If changes do not involve vue2->vue3 breaking change (e.g. v-model usage, render fucntion, $parent $children, vue2 only 3rd party packages), then no change is needed on 
vue-3-onlybranch, since we rebase regularly, these changes should reflect there after a rebase - If changes are not vue-3 friendly, please add a separate component (see steps below) / create a ticket to add that later
 
- If changes do not involve vue2->vue3 breaking change (e.g. v-model usage, render fucntion, $parent $children, vue2 only 3rd party packages), then no change is needed on 
 To add / update any vue-3 specific components (these components DO NOT exist in main branch in the time being)
- Checkout 
vue-3-onlybranch, rebase latestmainbranch onto this branch (there'll most likely be conflicts, just make sure the package name i.e.@felix-health/vue-components-vue3and version number is not overwritten by changes frommain) - Push to remote after rebase is successful
 - Checkout out a new branch for the changes you'll be adding (branch off from 
vue-3-only), prefix the branch name withv3_to skip styleguidist preview step in github action - All the vue-3 only components live under a 
/v3directory from the existing component directory, if it doesn't already exist, please create one - If the changes you're making is on an existing vue-3 component, you can push up your branch for review!
 - If the changes you're making is splitting an existing SHARED component into vue-2 and vue-3, remove that component export in 
/{client-build/server-build}/index.js, add the export in/{client-build/server-build}/vue2Components.jsand/{client-build/server-build}/vue3Components.jsaccordingly, push up for review, add the component to the list for tracking, push up for review! - If the changes you're making is solely adding a new vue-3 component, just add the export in 
/{client-build/server-build}/vue2Components.js, push up for review!Note that the styleguidist doesn't work with vue 3, so as a temporary way to test out components, we use the
/styleguidepages in Charm. For more details please refer to the readme invue-3-onlybranch. 
- Checkout 
 
To publish a new version
- Bump the version in package.json
 - Make a PR
 - Merge into the 
vue-3-onlybranch yarn buildand thennpm publish --access public
Project local setup
yarn installTo test and run components for functionality and styling check ():
1. run pwd to get local path
2. go to the consumer project directory, run npm install {path from above}
3. Or you can add this to package.json manually, for example:
// For absolute path
"@felix-health/vue-components-vue3": "/Users/{username}/felix/vue-components"
// For relative path (from the pr-testing-components branch example)
"@felix-health/vue-components-vue3": "file:../vue-components"To test in charm (nuxt 3), pull this branch pr-testing-components and check out the test pages inside pages/components/
This is a temporary solution before we implement a proper style library like Storybook
Run unit tests
We use Vue Testing Library with Jest for unit testing. To write a new test, add a .spec.js file next to the component file you're working in.
# run test in watch mode
yarn test# run test full test suite
yarn test:unitThis adds a docs folder which can be served as a static website.
Compiles and minifies for production npm build (Ensure to do this before publishing to npm!!)
yarn build-libLints and fixes files
We also lint staged files before every commit using lint-staged and husky
yarn lintFormat files
We also format staged files before every commit using lint-staged and husky
# checks files for formatting issues
yarn format:check# fixes formatting issues
yarn format:writeCustomize configuration
Built from guide here: https://javascript.plainenglish.io/how-to-create-test-bundle-vue-components-library-8c4828ab7b00
7 months ago
6 months ago
11 months ago
12 months ago
10 months ago
10 months ago
9 months ago
10 months ago
9 months ago
12 months ago
9 months ago
10 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
12 months ago
9 months ago
12 months ago
9 months ago
8 months ago
8 months ago
8 months ago
11 months ago
12 months ago
11 months ago
11 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
8 months ago
7 months ago
9 months ago
9 months ago
9 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
12 months ago
11 months ago
11 months ago
6 months ago
11 months ago
11 months ago
10 months ago
9 months ago
9 months ago
9 months ago
10 months ago
9 months ago
9 months ago
9 months ago
9 months ago
5 months ago
12 months ago
12 months ago
6 months ago
5 months ago
9 months ago
6 months ago
6 months ago
9 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago