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

@inotom/sws-scrollable-container

v1.2.1

Published

A web Components to show scrollable hint.

Downloads

571

Readme

sws-scrollable-container

A Web Components to show scrollable hint.

Demo

Demo

Usage

Place sws-scrollable-container custom elements around the content.

<sws-scrollable-container>
  ... inner content ...
</sws-scrollable-container>
<script type="module" src="sws-scrollable-container.min.js" defer></script>

Set element's style by css custom properties.

sws-scrollable-container {
  --sws-scrollable-container-position: relative;
  --sws-scrollable-container-shadow-size: 0.9375rem;
  --sws-scrollable-container-shadow-from-x: 0;
  --sws-scrollable-container-shadow-from-y: 0;
  --sws-scrollable-container-shadow-to-x: 0;
  --sws-scrollable-container-shadow-to-y: 0;
  --sws-scrollable-container-overscroll-behavior: auto;
  --sws-scrollable-container-notification-top: 3.125rem;
  --sws-scrollable-container-notification-left: calc((100% - var(--sws-scrollable-container-notification-size)) / 2);
  --sws-scrollable-container-notification-size: 6.25rem;
  --sws-scrollable-container-notification-padding: 0.75rem;
  --sws-scrollable-container-notification-gap: 0.5rem;
  --sws-scrollable-container-notification-color: #fff;
  --sws-scrollable-container-notification-background-color: rgba(0, 0, 0, 0.5);
  --sws-scrollable-container-notification-backdrop-filter: blur(0.187rem);
  --sws-scrollable-container-notification-border-radius: 0.625rem;
  --sws-scrollable-container-notification-box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
  --sws-scrollable-container-icon-scale: 1.5;
  --sws-scrollable-container-message-font-size: 0.75rem;
  --sws-scrollable-container-message-line-height: 1.25;
  --sws-scrollable-container-message-white-space: normal;
}

CSS custom properties

sws-scrollable-container

| css custom property name | content | defaults | |:-----------------------------------------------------------|:--------------------------------------|:-----------------------------------------------------------------------| | --sws-scrollable-container-position | Position property | relative | | --sws-scrollable-container-shadow-size | Inner shadow size | 0.9375rem | | --sws-scrollable-container-shadow-from-x | Left inner shadow offset | 0 | | --sws-scrollable-container-shadow-from-y | Top inner shadow offset | 0 | | --sws-scrollable-container-shadow-to-x | Right inner shadow offset | 0 | | --sws-scrollable-container-shadow-to-y | Bottom inner shadow offset | 0 | | --sws-scrollable-container-overscroll-behavior | Main box overscroll-behavior | auto | | --sws-scrollable-container-notification-top | Notification box top position | 3.125rem | | --sws-scrollable-container-notification-left | Notification box left position | calc((100% - var(--sws-scrollable-container-notification-size)) / 2) | | --sws-scrollable-container-notification-size | Notification box width/height size | 6.25rem | | --sws-scrollable-container-notification-padding | Notification box padding | 0.75rem | | --sws-scrollable-container-notification-gap | Notification box flexbox gap size | 0.5rem | | --sws-scrollable-container-notification-color | Notification box text color | #fff | | --sws-scrollable-container-notification-background-color | Notification box background color | rgba(0, 0, 0, 0.5) | | --sws-scrollable-container-notification-backdrop-filter | Notification box backdrop filter | blur(0.187rem) | | --sws-scrollable-container-notification-box-shadow | Notification box shadow | 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.2) | | --sws-scrollable-container-icon-scale | Notification icon transform scale | 1.5 | | --sws-scrollable-container-message-font-size | Notification message font size | 0.75rem | | --sws-scrollable-container-message-line-height | Notification message line height | 1.25 | | --sws-scrollable-container-message-white-space | Notification message line white-space | normal |

Options

<sws-scrollable-container
  label="scrollable"
  is-vertical="false"
  is-hide-notification="false"
>
  ... inner content ...
</sws-scrollable-container>

sws-scrollable-container

| option name | content | defaults | |:-----------------------|:-------------------------------------|:-------------| | label | Notification label text. | scrollable | | is-vertical | Scroll direction. | false | | is-hide-notification | Disable notification (only shadow). | false |

License

MIT

Author

inotom