fluency-v8
Fluency SIEM Web Interface v8 Components
This are all the shared components used across Fluency Vue 3 UI
This package is published on npm.
https://www.npmjs.com/package/fluency-v8-components
Publish the package to npm
- build the package
npm run build
- publish to npm
npm login
npm publish
Testing the package locally
- build the package
npm run build
- pack it into a tar file
npm pack
- install the packed file in your project
npm install ../fluency-v8-components/fluency-v8-components-1.0.0.tgz
Using the package
- add the tailwind classes in tailwind.config.js
add './node_modules/fluency-v8-components/
*/.{js,ts,vue}' to the content array
- import the css in main.ts for scoped styles
import "fluency-v8-components/dist/index.css";
- import the components in the file as followed:
import { GreyInput } from "fluency-v8-components"