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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@wovosoft/wovoui

v1.2.41

Published

[![NPM Version](https://img.shields.io/npm/v/@wovosoft/wovoui?color=blue&style=flat-square)](https://www.npmjs.com/package/@wovosoft/wovoui) [![License](https://img.shields.io/npm/l/@wovosoft/wovoui?color=green&style=flat-square)](https://github.com/wovos

Readme

⚡️ wovoui

NPM Version License Vue Support Bootstrap Support

wovoui is a high-performance, type-safe Vue 3 component library built on top of Bootstrap 5 styling and design principles. It replaces Bootstrap's native jQuery/Vanilla JS plugins with fully reactive Vue 3 logic, while shipping source Single File Components (SFCs) directly for optimal customization, build-time compilation, and tree-shaking.


🚀 Key Features

  • Direct SFC Shipping: Raw Vue Single File Components (.vue) and TypeScript source files (.ts) are exported directly. Your bundler (like Vite) compiles them natively, enabling deep integration, optimal tree-shaking, and custom styling overrides.
  • Pure Vue 3 Logic: Zero reliance on Bootstrap's native JavaScript files or jQuery. All interactive components ( Modals, Dropdowns, Tooltips, Popovers, Collapses) are powered by Vue 3 reactivity.
  • TypeScript First: End-to-end type safety with first-class TypeScript support and pre-generated declarations.
  • Granular Imports: Import the entire library or individual modules (@wovosoft/wovoui/components/Accordion, etc.) to minimize bundle size.
  • Rich Forms & Layouts: Includes advanced form controls (Datepicker, Multiselect, Calendar, TypeHead) and comprehensive layout elements (Flex, Grid, Stack).

📦 Installation

Install the package via your preferred package manager:

# Using npm
npm install @wovosoft/wovoui

# Using yarn
yarn add @wovosoft/wovoui

# Using pnpm
pnpm add @wovosoft/wovoui

# Using bun
bun add @wovosoft/wovoui

Peer Dependencies

Make sure you have the required peer dependencies installed:

npm install bootstrap bootstrap-icons dayjs @popperjs/core vue

Dev Dependencies (Recommended)

Since wovoui ships raw SFC files containing <style lang="scss">, you should install Sass in your project to compile the components:

npm install -D sass

🛠 Setup & Usage

1. Import CSS

Import Bootstrap and the Wovoui utility styles in your entry file (e.g., main.ts or app.ts):

import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap-icons/font/bootstrap-icons.css';
import '@wovosoft/wovoui/style.css';

2. Basic Usage

Import components directly from the main entry point:


<template>
  <div class="container py-4">
    <Button variant="primary" @click="showModal = true">
      Open Modal
    </Button>

    <Modal v-model="showModal" title="Hello wovoui!">
      <p>This modal is fully powered by Vue 3 logic & Bootstrap 5 styles.</p>
      <template #footer>
        <Button variant="secondary" @click="showModal = false">Close</Button>
      </template>
    </Modal>
  </div>
</template>

<script setup lang="ts">
  import {ref} from 'vue';
  import {Button, Modal} from '@wovosoft/wovoui';

  const showModal = ref(false);
</script>

3. Modular Imports (Optimal Tree-Shaking)

You can import components directly from their specific sub-paths:

import {Accordion, AccordionItem} from '@wovosoft/wovoui/components/Accordion';
import {Datepicker} from '@wovosoft/wovoui/components/Form';

🗃 Components Directory

| Category | Components | |--------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | Form | Calendar, Checkbox, CheckboxGroup, Datepicker, Feedback, FeedbackMessages, FormControl, FormGroup, FormLabel, Input, InputGroup, InputGroupText, Multiselect, Radio, RadioGroup, Range, Rating, Select, SpinButton, Tags, Textarea, Timepicker, TypeHead | | Layout | Container, Row, Col, Column, Flex, FlexItem, Grid, GridCol, Stack, Layout | | Navigation | Link, Menu, Nav, NavItem, NavItemDropdown, NavLink, Navbar, NavbarBrand, NavbarNav, NavbarToggler, PageItem, PageLink, Pagination, PanelMenu | | Notification | Popover, Toast, ToastBody, ToastContainer, Tooltip | | Accordion & Collapse | Accordion, AccordionBody, AccordionHeader, AccordionItem, Collapse | | Indicators | Progress, ProgressBar, Spinner | | Modal & Offcanvas | Modal, ModalBody, ModalDialog, ModalFooter, ModalHeader, ModalTitle, Offcanvas, OffcanvasBody, OffcanvasHeader, OffcanvasTitle | | UI elements | Aspect, Badge, Chart, Figure, Placeholder, Vr | | Directives | vOnClickOutside, vVr, vModal |


📝 Configuration (Vite)

To ensure smooth compilation of directly shipped Vue and TS source files in a Vite application, configure your alias or resolution settings if needed. Standard Vite setups will recognize the exports automatically:

// vite.config.ts
import {defineConfig} from 'vite';
import vue from '@vitejs/plugin-vue';

export default defineConfig({
    plugins: [vue()],
    // sass and css are handled automatically once sass is installed
});

📖 Documentation & Examples

For full details, API references, props, events, and interactive examples, read the full * *Documentation here**.


🤝 Developed By

Developed with ❤️ by Narayan Adhikary at WovoSoft. Contributions and bug reports are welcome on GitHub.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.