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

sebas-simple-button

v0.2.3

Published

A simple styled button component

Readme

sebas-simple-button

A simple, framework-agnostic button component built with Vue 3 Web Components.

Features

  • ✅ Framework-agnostic (works with vanilla JS, React, Angular, Vue, etc.)
  • ✅ TypeScript support
  • ✅ Shadow DOM encapsulation
  • ✅ Custom events
  • ✅ Multiple style variants
  • ✅ Click counter for testing
  • ✅ Small bundle size (~1.3 KB gzipped)

Installation

npm install sebas-simple-button

Usage

Vanilla JavaScript / HTML

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Simple Button Example</title>
</head>
<body>
	<!-- Use the component -->
	<simple-button label="Click me!" variant="primary"></simple-button>
	<simple-button label="Secondary" variant="secondary"></simple-button>
	<simple-button label="Success" variant="success"></simple-button>
	<simple-button label="Disabled" disabled></simple-button>
	
	<script type="module">
		import { register } from 'sebas-simple-button';
		
		// Register the custom element
		register();
		
		// Listen for click events
		document.querySelectorAll('simple-button').forEach(button => {
			button.addEventListener('button-click', (event) => {
				console.log('Button clicked!', event.detail);
			});
		});
	</script>
</body>
</html>

With NPM/Build Tools

import { register } from 'sebas-simple-button';

// Register the custom element once in your app
register();

Then use in your HTML:

<simple-button 
	label="Click me!" 
	variant="primary"
></simple-button>

Using UMD (CDN)

<script src="https://unpkg.com/sebas-simple-button"></script>
<script>
	// The component is automatically registered
</script>

<simple-button label="Click me!"></simple-button>

API

| Prop | Type | Default | Description | |------|------|---------|-------------| | label | string | 'Click me' | Button text content | | variant | 'primary' \| 'secondary' \| 'success' | 'primary' | Button style variant | | disabled | boolean | false | Disable the button |

Events

| Event | Detail | Description | |-------|--------|-------------| | button-click | { count: number } | Emitted when button is clicked. Contains click count for testing. |

Slots

The component supports a default slot for custom content:

<simple-button>
	<span style="color: red;">Custom Content</span>
</simple-button>

Styling

The component uses Shadow DOM for style encapsulation. All styles are scoped to the component and won't leak to the rest of your application.

Variants

  • primary: Blue background
  • secondary: Gray background
  • success: Green background

All variants include hover effects and smooth transitions.

Development

# Install dependencies
npm install

# Start development server (examples)
npm run dev:examples

# Build the package
npm run build

# Preview built examples
npm run preview

Browser Support

Works in all modern browsers that support:

  • Custom Elements v1
  • Shadow DOM v1
  • ES Modules

License

MIT