npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

jui-lib

v1.1.51

Published

**JUI Lib** is a powerful and versatile component library built with **Vue 3**. It provides a collection of reusable, accessible, and highly customizable UI components to streamline your development process. Whether you’re building complex applications or

Downloads

918

Readme

JUI Lib

JUI Lib is a powerful and versatile component library built with Vue 3. It provides a collection of reusable, accessible, and highly customizable UI components to streamline your development process. Whether you’re building complex applications or simple user interfaces, JUI Lib is designed to help you create seamless and responsive designs effortlessly.

Table of Contents


Features

  • Built with Vue 3 for modern web development.
  • TailwindCSS integration for styling consistency.
  • A wide range of UI components to cover common UI patterns.
  • Fully customizable and responsive design.
  • Comprehensive documentation with live examples.

Installation

To install JUI Lib in your Vue project, use npm or yarn:

npm install jui-lib

Or with yarn:

yarn add jui-lib

Dependencies

Required Dependencies:

  • vue
  • vue3-popper

Development Dependencies:

  • @tiptap/pm
  • @tiptap/starter-kit
  • @tiptap/vue-3
  • @vitejs/plugin-vue
  • sass-embedded
  • vite
  • tailwindcss

Ensure these dependencies are installed and properly configured in your project for seamless integration.


Components

The library includes the following components:

General Components

  • AccordionDefault
  • AlertDefault
  • BadgeDefault
  • BadgeKeyboard

Avatar Components

  • AvatarDefault
  • AvatarInitials
  • AvatarPlaceholder
  • AvatarStack

Breadcrumb

  • BreadcrumbDefault

Button Components

  • ButtonDefault
  • ButtonIcon

Form Components

  • FormDefault
  • FormGroup
  • FormLabel

Grid

  • GridDefault

Input Components

  • CheckboxInput
  • DateInput
  • EmailInput
  • FileDrop
  • IconInput
  • NumberInput
  • PasswordInput
  • RadioInput
  • SearchInput
  • SelectInput
  • SelectInputCheckbox
  • SelectInputRadio
  • TextAreaInput
  • TextEditorInput
  • TextInput
  • ToggleInput

Loaders

  • LoaderDefault

Modal Components

  • ModalConfirm
  • ModalDefault

Page Components

  • PageDefault
  • PageHeader

Placeholder Components

  • PlaceholderAvatar
  • PlaceholderBarChart
  • PlaceholderImage
  • PlaceholderText

Profile Components

  • ProfileApp
  • ProfileDefault

Table Components

  • TableBody
  • TableContainer
  • TableHeader
  • TablePagination

Tabs

  • TabsPills
  • TabsUnderline

Toast Components

  • ToastDefault
  • ToastWrapper

Tooltip

  • TooltipDefault

Usage

After installing the library, import and use the components in your Vue application. Here's a quick example:

Example Usage

<template>
  <div>
    <AvatarDefault :src="'/path/to/avatar.jpg'" />
    <ButtonDefault @click="handleClick">Click Me</ButtonDefault>
    <ToastWrapper>
      <ToastDefault message="Hello, World!" />
    </ToastWrapper>
  </div>
</template>

<script>
import {
  AvatarDefault,
  ButtonDefault,
  ToastWrapper,
  ToastDefault,
} from "jui-lib";

export default {
  components: {
    AvatarDefault,
    ButtonDefault,
    ToastWrapper,
    ToastDefault,
  },
  methods: {
    handleClick() {
      alert("Button clicked!");
    },
  },
};
</script>

Documentation

Detailed documentation for all components, including available props and live examples, is available at:
JUI Lib Documentation


License

JUI Lib is licensed under the MIT License. Feel free to use it in your personal and commercial projects.


Happy Coding! 🎉