Vivid UI
Essential UI web components for building modern web applications, bound to provide a safe, simple and intuitive interface.
Installation
To integrate Vivid components into your project, run:
npm install @vonage/vivid
Usage
Import components in your project via side effect imports:
import '@vonage/vivid/button';
And include in HTML:
<vwc-button label="Click me"></vwc-button>
For a full list of components and API, explore the components docs š.
Prerequisite
Tokens
To include the tokens, you must load theme css:
'node_modules/@vonage/vivid/styles/tokens/theme-light.css';
Or
'node_modules/@vonage/vivid/styles/tokens/theme-dark.css';
About tokens
The Vivid components library rely on a set of design tokens (in the form of css custom properties).
Tokens should not affect the look of the application rather just provide a common set of identities (such as colors, typography, spacing etc') to be used by the components to look as intended.
As the task of loading css is not trivial, and may vary from project to project, this library does not provide any way to load the css. It is up to the author to load the css in the most appropriate manner for their project.
Setting Vivid class
The Vivid tokens require a vvd-root
class selector to be present on a wrapping element (advisably the :root
) for it to apply its css custom properties to.
š” The :root CSS pseudo-class matches the root element of a tree representing the document
<html class="vvd-root">...</html>
You can also add it to any wrapping element if you would like to scope the styles to only a certain part of your application.
Fonts (Prerequisite)
Vivid uses Montserrat and Roboto Mono Google fonts.
Learn how to load fonts into your application with google-fonts
Unless explicitly stated otherwise, Vonage products should use the brand specified font families by Spezia. Vonage teams may review guidelines at the Spezia webfont kit.
š” For more information check out vonage fonts
Advanced Usage
š” For more information on core application styles & scoped elements check out advanced usage
CDN - Quickstart
Global content delivery networks can help quickly integrate content within html pages, fetching content from an URL, skipping local builds entirely.
Such practice is often used when working on POCs or reproduction environments.
Tools like UNPKG, jsDeliver, Skypack etc' are bound to deliver any content registered in the npm registry.
The following snippet fully renders a Vivid button component
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Roboto+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/@vonage/vivid@3.x/styles/tokens/theme-light.css">
<script type="module" src="https://unpkg.com/@vonage/vivid@3.x/button/index.js"></script>
<div class="vvd-root">
<vwc-button label="Click me" appearance="filled" connotation="cta"></vwc-button>
</div>
Support Matrix
This library is supported on 2 recent versions of major browsers (Chrome, Firefox, Safari, Edge).
Support
This library is open source, developed and maintained by the Vonage Vivid teams.
For any questions, please open a bug report or feature request.
Roadmap
Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Versioning
We use SemVer for versioning. For the versions available, see the npm page.
Authors
See also the list of contributors who participated in this project.
License
This project is licensed under the Apache 2.0 License - see the LICENSE.md file for details
Built With ā” And
- Fast - to extend element classes and compile code to native web components
- Typescript - for ergonomic and type-safe code
- Sass - for styles authoring extensibility and consistency
- Floating UI - for positioning floating elements
- Dropzone - for handling dropped files
Have questions?
Still looking for answers, ask us in #ask-vivid slack channel.