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

@olivier808s/tribe-components

v4.1.2

Published

A Vue 3 component library with 30+ reusable, themeable UI components

Downloads

113

Readme

Tribe Components

A Vue 3 component library with 30+ reusable, themeable UI components.

Installation

npm install @olivier808s/tribe-components

Setup

Register all components globally:

import { createApp } from 'vue'
import TribeComponents from '@olivier808s/tribe-components'
import '@olivier808s/tribe-components/style.css'

const app = createApp(App)
app.use(TribeComponents)
app.mount('#app')

Or import components individually:

import { Button, Card, Modal } from '@olivier808s/tribe-components'

Components

Layout & Structure

  • Accordion — collapsible content sections
  • Card — content container
  • Tabs — tabbed navigation
  • Stepper — multi-step flow indicator
  • TableCard — table with card styling

Navigation

  • DropdownMenu — contextual menu
  • DropdownOptions — option list dropdown
  • HoverBox — hover-triggered content
  • Tooltip — inline tooltip

Forms & Inputs

  • Textbox, Textarea — text input fields
  • Checkbox, Radio, Toggle — boolean inputs
  • Select, Multiselect — single and multi-selection
  • DatePicker — date selection
  • NumberInput, CurrencyInput — numeric inputs
  • FileButton, DragAndDropFiles, Dropzone — file upload

Display

  • Button, IconButton — action buttons
  • Badge, Tag, ClickableTag — labels and chips
  • Avatar, AvatarGroup — user avatars
  • Paragraph — styled text block
  • Loader — loading indicator
  • CodeSnippet — formatted code display
  • AttachmentList, FileList — file listings
  • MediaCarousel, MediaInput — media handling
  • Modal, ModalContent — modal dialogs
  • ToastContainer, ToastMessage — toast notifications

Utilities

  • TribeIcon — built-in SVG icon set
  • StopPropagation — event propagation wrapper

Composables

import { useToast, useFiles, useIsHandheld } from '@olivier808s/tribe-components'
  • useToast() — show and dismiss toast notifications
  • useFiles() — file formatting utilities and readable file sizes
  • useIsHandheld() — detect handheld/mobile viewport (configurable breakpoint, default 800px)

Theming

Tribe Components uses Tailwind CSS v4 with a CSS variable-based theme. Override the following variables in your own CSS to customize the look:

@theme {
  --color-primary: ...;
  --color-secondary: ...;
  --color-accent: ...;

  --color-error: ...;
  --color-success: ...;

  --color-base: ...;
  --color-card: ...;
  --color-card-accent: ...;
  --color-border: ...;
  --color-dropdown: ...;
  --color-dropdown-select: ...;
  --color-quick-filter: ...;
  --color-quick-filter-selected: ...;
  --color-base-text: ...;
  --color-secondary-text: ...;
  --color-dropdown-text: ...;
}

Dark mode is supported via Tailwind's class strategy — add the dark class to your root element.

CSS Exports

| Import path | Contents | |---|---| | .../style.css | Full library styles |

TypeScript

Full TypeScript support is included. Props, emits, slots, and shared types are all exported:

import type { ButtonVariant, TribeIconType } from '@olivier808s/tribe-components'

Requirements

  • Vue 3.2+
  • Node 18+

License

MIT