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

@adersolutions/sirius-vue

v1.0.1

Published

Sirius UI Vue Components Library

Downloads

10

Readme

@adersolutions/sirius-vue

A comprehensive Vue 3 UI components library built with modern design principles and accessibility in mind.

Installation

npm install @adersolutions/sirius-vue
# or
pnpm add @adersolutions/sirius-vue
# or
yarn add @adersolutions/sirius-vue

Peer Dependencies

This package requires Vue 3.3.0 or higher:

npm install vue@^3.3.0

Usage

Basic Setup

<template>
  <div>
    <SiriusButton variant="primary">Click me</SiriusButton>
    <SiriusBadge color="blue">New</SiriusBadge>
    <SiriusSpinner size="medium" />
  </div>
</template>

<script setup>
import { 
  SiriusButton, 
  SiriusBadge, 
  SiriusSpinner 
} from '@adersolutions/sirius-vue';
import '@adersolutions/sirius-vue/style.css';
</script>

Global Registration (Optional)

// main.js
import { createApp } from 'vue';
import Sirius from '@adersolutions/sirius-vue';
import '@adersolutions/sirius-vue/style.css';

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

Available Components

Actions

  • Button - Interactive buttons with multiple variants and states

Feedback

  • Badge - Status indicators and labels
  • Banner - Important announcements and alerts
  • ErrorBoundary - Error catching and fallback UI
  • ExceptionList - Display lists of errors or exceptions
  • SkeletonBodyText - Loading placeholder for text content
  • SkeletonDisplayText - Loading placeholder for headings
  • Spinner - Loading indicators
  • Toast - Temporary notifications
  • Transition - Smooth animations and transitions

Forms & Selections

  • Checkbox - Boolean input controls
  • RadioButton - Single selection from multiple options
  • Select - Dropdown selection controls
  • TextField - Text input fields
  • Toggle - On/off switches

Images

  • Thumbnail - Image previews and avatars

Layout & Structure

  • Card - Content containers with consistent styling
  • Divider - Visual separators
  • Grid - Responsive grid system
  • Layout - Page layout components
  • Page - Full-page layout wrapper
  • Section - Content sections
  • Stack - Vertical and horizontal stacking
  • Tabs - Tabbed content organization

Navigation

  • Frame - Application frame with navigation
  • Navigation - Navigation components

Overlays

  • Modal - Overlay dialogs and forms
  • Popover - Contextual overlays
  • Tooltip - Hover information

Tables

  • DataTable - Structured data display
  • Table - Basic table components

Typography

  • DisplayText - Large display text
  • Heading - Section headings
  • Link - Interactive links
  • Text - Body text and paragraphs
  • TextStyle - Text with semantic styling

Composables

The package also provides useful composables:

import { useToast } from '@adersolutions/sirius-vue';

// In your component
const { showToast, hideToast } = useToast();

Styling

The package includes a CSS file that you need to import. Make sure to include Tailwind CSS in your project for full styling support.

import '@adersolutions/sirius-vue/style.css';

TypeScript Support

This package is built with TypeScript and includes full type definitions. All components and composables are fully typed with proper interfaces and JSDoc comments.

Demo

You can run the demo application to see all components in action:

# Navigate to the Vue package directory
cd packages/vue

# Install dependencies
pnpm install

# Run demo
pnpm demo

# Build demo
pnpm demo:build

Development

# Install dependencies
pnpm install

# Build the package
pnpm build

# Watch mode for development
pnpm dev

License

MIT

Contributing

Please refer to the main repository for contributing guidelines.

Support

For issues and feature requests, please visit our GitHub repository.