https://github.com/zedix/zedix-ui
A library of essential web components (lit-based), serving as a foundation for web apps or design systems. Mostly headless. Works with any frameworks.
https://github.com/zedix/zedix-ui
custom-element design-system dialog embla-carousel floating-ui lit ui-library web-components
Last synced: 4 months ago
JSON representation
A library of essential web components (lit-based), serving as a foundation for web apps or design systems. Mostly headless. Works with any frameworks.
- Host: GitHub
- URL: https://github.com/zedix/zedix-ui
- Owner: zedix
- License: mit
- Created: 2019-08-30T12:56:36.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-08-24T21:37:20.000Z (10 months ago)
- Last Synced: 2025-10-25T09:35:43.994Z (8 months ago)
- Topics: custom-element, design-system, dialog, embla-carousel, floating-ui, lit, ui-library, web-components
- Language: TypeScript
- Homepage: https://zedix-ui-storybook.netlify.app/
- Size: 4.73 MB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# @zedix/zedix-ui

[](https://github.com/lit/lit/)
[](https://github.com/zedix/zedix-ui/actions/workflows/ci.yml)
`@zedix/zedix-ui` is a library of essential web components ([lit-based](https://github.com/lit/lit/)) serving as a foundation for web apps or design systems.
The UI kit provides primitives such as:
- `autocomplete`
- `carousel`
- `details`
- `dialog`
- `drawer`
- `popover`
- `skeleton`
- `spinner`
- `tooltip`
- …
## Demo
[Demo ↗](https://zedix-ui-storybook.netlify.app)
## Installation
```
❯ yarn add @zedix/zedix-ui
```
## Usage
Tooltip example:
```js
import '@zedix/zedix-ui/dist/components/tooltip/tooltip.js';
<script>
<button id="btn-close" type="button">✗<button>
<zx-tooltip
for="btn-close"
class="px-3 py-2"
placement="bottom"
trigger="focus hover"
hide-delay="150"
>
Close
</zx-tooltip>
```