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

react-ui-vegetas-wife

v0.1.8

Published

React UI component library built on top of Bulma.

Readme

React UI Vegeta's Wife

React UI component library built on top of Bulma.

The library provides React components that map closely to Bulma elements, components, form controls, grid primitives, helpers, and layout blocks. It also ships a small compiled CSS bundle for custom controls that are not covered by Bulma's default stylesheet.

Storybook (https://wilmanh.github.io/react-vegeta-s-wife)

Installation

npm install react-ui-vegetas-wife

Install the required peer dependencies if your app does not already provide them:

npm install react react-dom bulma

Styles

Import Bulma and the library stylesheet once in your app entrypoint:

import 'bulma/css/bulma.min.css';
import 'react-ui-vegetas-wife/styles.css';

bulma is a peer dependency. The package does not bundle Bulma's full CSS into styles.css; consumers keep control over how Bulma is loaded, themed, or customized.

react-ui-vegetas-wife/styles.css is generated from src/assets/styles/bulma.scss and contains the library's custom checkbox, radio, and switch styles.

Basic Usage

import 'bulma/css/bulma.min.css';
import 'react-ui-vegetas-wife/styles.css';
import { Button, Field, Input, Label } from 'react-ui-vegetas-wife';

export function Example() {
  return (
    <Field>
      <Label>Name</Label>
      <Input color="primary" placeholder="Vegeta" />
      <Button color="primary">Save</Button>
    </Field>
  );
}

Public Entry Points

Main component API:

import { Button, Card, Input, Navbar, Section } from 'react-ui-vegetas-wife';

Stylesheet:

import 'bulma/css/bulma.min.css';
import 'react-ui-vegetas-wife/styles.css';

Available Component Groups

  • Form controls: Input, Textarea, Checkbox, Radio, Switch, File, Field, Control, Label, Help.
  • Elements: Button, Buttons, Box, Content, Delete, Icon, Image, Notification, Progress, Tag, Tags, Title, Subtitle, Video.
  • Components: Breadcrumb, Card, Dropdown, Menu, Message, Modal, Navbar, Pagination, Panel, Tabs.
  • Layout and structure: Container, Section, Hero, Level, Media, Columns, Column, FixedGrid, SmartGrid, Cell.

TypeScript prop types are exported from the package, for example:

import type { ButtonProps, InputProps, Colors, Sizes } from 'react-ui-vegetas-wife';

MIT