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 🙏

© 2024 – Pkg Stats / Ryan Hefner

adwaveui

v0.0.11

Published

Interactive Web Components inspired by the Gtk Adwaita theme.

Downloads

24

Readme

Components

  1. Input
  2. Selector
  3. Slider
  4. Switch

Input

<adw-input
    placeholder="Put in your name"
></adw-input>

Properties

| Property | Description | Default | | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | | disabled | If the input is disabled or not. | "false" | | form | The form the input belongs to. | | | maxlength | The maximum length of the input. | | | minlength | The minimum length of the input. | | | name | The name of the input, used when submitting a form. | | | placeholder | Text displayed when the input is empty. | | | suggestions | List of suggested strings to display when the input is focused. | | | suggestionsorientation | Determines whether the list of suggestions appears above or below the input field. up or down. | "down" | | suggestionsshowall | Set to "true" to always display all the suggestions. | "false" | | fuzzy | When set to "true" the suggestions will be filtered using a fuzzy search algorithm as the user types. By default filtering is done using a simple string match. | | | type | The type of the input. (text, password, email, etc.) | "text" | | value | The current value of the input. | |

Selector

<adw-selector placeholder="Select option">
    <adw-option value="1" selected="true">
        Option 1
    </adw-option>
    <adw-option value="2">
        Option 2
    </adw-option>
    <adw-option value="3">
        Option 3
    </adw-option>
</adw-selector>

Properties

| Property | Description | Default | | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------- | | disabled | If the selector is disabled or not. | "false" | | form | The form the selector belongs to. | | | name | The name of the selector, used when submitting a form. | | | orientation | Determines whether the list of options appears above or below the selector. up or down. | "down" | | reverseorder| When set to true, the options will be displayed in reverse order. | "false" | | placeholder | Text displayed when no option is selected. | | | inert | When set to true, this option will appear as non-selectable, this can be used to create separators or headers above or in between other options. | "false" |

adw-option properties

| Property | Description | Default | | ---------- | --------------------------------- | ------- | | selected | If the option is selected or not. | "false" | | value | The value of the option. | |

Slider

<adw-slider
    min="0"
    max="100"
    value="50"
></adw-slider>

Properties

| Property | Description | Default | | ----------- | ------------------------------------------------------------------------- | ------- | | disabled | If the slider is disabled or not. | "false" | | form | The form the slider belongs to. | | | max | The maximum value on the slider. | 100 | | min | The minimum value on the slider. | 0 | | name | The name of the slider, used when submitting a form. | | | precision | The number of decimal places to round the value to. | 4 | | step | The amount to increment or decrement the value by when moving the slider. | 1 | | value | The current value of the slider. | |

Switch

<adw-switch
    active="true"
></adw-switch>

Properties

| Property | Description | Default | | ---------- | ---------------------------------------------------- | ------- | | disabled | If the switch is disabled or not. | | | form | The form the switch belongs to. | | | name | The name of the switch, used when submitting a form. | | | active | If the switch is active or not. | "false" |