Web Components library address issue of sharing same visual elements and basic style setup across different projects. It's based on following tools
Please check the storybook preview page for full component list and basic styling.
In order to use library you need to install this as npm package
yarn add @lukso/web-componentsLibrary is focused around projects build on top of Tailwind CSS framework. It ships with bunch of components, presets for styles, typography and colors.
For using components you need to first import them either as individual ones:
import('@lukso/web-components/components/dist/lukso-button')
import('@lukso/web-components/components/dist/lukso-card')
import('@lukso/web-components/components/dist/lukso-tag')or all of them in single import:
import('@lukso/web-components')Hint: you can make import in root level of your project (
app.vue) instead of importing in every component.
Hint: In Frameworks that use SSR you need to import components only when window object is defined.
Use components in the HTML with following rules:
- components are lowercase and with
-in name i.elukso-button - they need to have closing tag even if they don't use slot
- properties are lowercase and with
-in name i.eprimary-color="neutral-100" - boolean properties are working with just a presence
is-checked
See example below:
<lukso-example-component primary-color="neutral-100" is-checked></lukso-button>Under the hood you use Web Components which styles are encapsulated within own shadow DOM (host page doesn't have access to it styles and vice versa). The only thing that components share from are fonts, colors and variables, see more on CSS inheritance.
// tailwind.config.js
module.exports = {
presets: [require('@lukso/web-components/tailwind.config')],
// ...
}// main.scss
$font-file-path: '/assets/fonts';
@import '@lukso/web-components/tools/sass/main.scss';In order to use other files like fonts or images from library we need to manually copy them to your project. This is ESM limitation that allow to import only js files.
import { copyAssets } from '@lukso/web-components/tools/copy-assets'
import assets from '@lukso/web-components/tools/assets'
copyAssets('./src', assets)Place this at the top of your build file ie.
vite.config.ts
Atm the only thing that you can benefit from non Tailwind CSS projects is loading the fonts
// main.scss
$font-file-path: '/assets/fonts';
@import '@lukso/web-components/tools/sass/fonts.scss';We currently support custom icons and the one from Vuesax icon pack. They work almost the same but there is a difference is adding them to library:
They are added as Typescript files. Each icon needs to be wrapped in ts file and dynamic parts like stroke, fill, stroke-width needs to be replaced with placeholders. Icons needs to be registered in the icon index file.
Those icon take more modern approach. All it is needed that the svg files have to be placed in correct folder structure under src/components/lukso-icon/vuesax. Then component takes over all the parsing part to make them usable. Since we rely on Figma file the easiest is just to export the whole icon group and copy into the project.
Start the watch mode and Storybook preview
yarn devcheck for the issues after code changes
yarn lint
yarn testThis repo uses Release Please to automate release process. It's important to follow Conventional Commits spec for naming Pull Requests. Once PR is merged into main the release PR will be created. When release PR is merged new package is released in npm.
For local development it's handy to link component library with the project you currently develop. This way you can work with components like in normal app. To make it work you need to first link the library:
yarn link -p ../tools-web-componentsThe only caveat with linking is that this will add resolution entry into package.json and package.lock` which shouldn't be committed. Make sure to revert this changes or run unlink command
yarn unlink ../tools-web-components