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

vuesp-components

v1.3.11

Published

vuesp-components

Readme

Vuesp components

Component library for Vuesp - Template for your arduino projects with a web interface.

Installation

npm

npm install vuesp-components

yarn

yarn add vuesp-components

pnpm

pnpm add vuesp-components

Usage

Basic Setup

Import the components and styles in your Vue app:

import { createApp } from 'vue'
import App from './App.vue'
import * as components from 'vuesp-components'
import 'vuesp-components/dist/style.css'

const app = createApp(App)

// Register all components globally
Object.entries(components).forEach(([name, component]) => {
  if (typeof component === 'object' && component.name) {
    app.component(component.name, component)
  }
})

app.mount('#app')

Using Components

UI Components

<template>
  <div>
    <VButton color="primary" @click="handleClick">Click me</VButton>
    <VTextField v-model="text" label="Input text" />
    <VSelect v-model="selected" :list="options" />
    <VCheckbox v-model="checked" />
  </div>
</template>

<script setup lang="ts">
import { ref } from 'vue'

const text = ref('')
const selected = ref('')
const checked = ref(false)
const options = [
  { label: 'Option 1', value: 1 },
  { label: 'Option 2', value: 2 },
]

const handleClick = () => {
  console.log('Button clicked')
}
</script>

App Layout Components

<template>
  <div class="app">
    <AppHeader :changeTheme="toggleTheme" :notifications="notifications" />
    <AppNav :menu="menuItems" :fullPath="route.path" />
    <div class="app-content">
      <RouterView />
    </div>
    <AppNotification ref="notification" />
  </div>
</template>

Dashboard Components

<template>
  <div class="dashboard">
    <CardBase label="Temperature" icon="thermometer">
      <CardInput :value="temperature" @input="updateTemp" />
    </CardBase>
    <CardBase label="Status" icon="info">
      <CardButton label="Toggle" @click="toggleStatus" />
    </CardBase>
  </div>
</template>

Composables

import { useForms } from 'vuesp-components/composables'

const { formData, submitForm, resetForm } = useForms()

Helpers

import { someHelper } from 'vuesp-components/helpers'

Plugins

import { i18nPlugin } from 'vuesp-components/plugins'

app.use(i18nPlugin, {
  locale: 'en',
})

Features

  • ✅ Vue 3 with TypeScript support
  • ✅ Tailwind CSS styling
  • ✅ Fully typed components
  • ✅ Accessible UI components
  • ✅ Responsive design
  • ✅ Dark mode support
  • ✅ Dashboard components for IoT interfaces
  • ✅ Form utilities and composables
  • ✅ i18n integration

Components

UI Components

  • VButton - Button component
  • VCheckbox - Checkbox component
  • VTextField - Text input field
  • VSelect - Select dropdown
  • VAutocomplete - Autocomplete input
  • VTable - Data table
  • VTabs - Tabs component
  • VAccordion - Accordion component
  • VDropdown - Dropdown menu
  • VLoader - Loading spinner
  • VIcon - Icon component
  • VFile - File upload
  • VDragDrop - Drag and drop
  • VExpansion - Expansion panel
  • VList - List component

App Components

  • AppHeader - Header with theme toggle
  • AppNav - Navigation menu
  • AppAside - Sidebar
  • AppDialog - Modal dialog
  • AppNotification - Toast notifications
  • AppProgress - Progress bar

Dashboard Components

  • CardBase - Base card
  • CardButton - Button card
  • CardDate - Date card
  • CardDimmer - Dimmer control
  • CardInfo - Info card
  • CardInput - Input card
  • CardList - List card
  • ItemEdit - Edit item component
  • ItemOptions - Options component

License

1.3.1 (2026-06-22)

  • (bondrogeen) Build fixes and documentation updates

1.3.0 (2025-10-09)

  • (bondrogeen) Minor changes

0.0.1 (2024-01-07)

  • (bondrogeen) init

License

The MIT License (MIT)

Copyright (c) 2021-2025, bondrogeen [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.