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

@ewc-lib/ewc-popover

v0.2.5-alpha

Published

![Screenshot](./screen1.png) ![Screenshot](./screen2.png)

Downloads

143

Readme

Screenshot

Screenshot Screenshot

This popover opens below, above, left or right of a HTML element, depending on location and available space.

API

Attributes

  • positioningHint - can be one of: bottom, top, left, right. Tries to place at given position first and only find another position if that fails.
    • can be modified at runtime. takes effect after opening.

Props

  • visibility - false/true

Methods

  • toggleVisibility

Mandatory Children

ewc-popover must have 2 children:

  • The first is an HTML element to open/close the popover.
  • The second is the content of the popover.

Note: The children have to exist at init time (i.e. in static html) and can't be added at runtime. However the children of the 2nd (the content-child) can be manipulated at runtime.

Note about events

Click and keyboard events regarding opening/closing are attached to the first element. The element itself does not need to handle them.

I.e. when an ewc-icon-button is used to open/close an ewc-popover, the ewc-icon-button's "action" event can be ignored.

Dimensions

The width/height can be set explicitly via CSS - see 2nd popover below as an example.

Optional additional element for closing

An element within the content can be specified to close the popover. This is done by setting the attribute "data-ewc-popover-close" on it (just existence is checked, value doesn't matter). Use case: a close button inside the popover.

Usage with WebPack

package.json

"dependencies": {
  "@ewc-lib/ewc-popover": "^0.1.0-alpha"
}

example index.html

<body>

  <div style="text-align: right; max-width: 65ch; margin:20px;">
    <ewc-popover>
      <span style="border: 1px solid; padding: 2px;">Click me, I have a popover!</span>
      <div>
        <p>I am the popover content!</p>
        <button data-ewc-popover-close>close me!</button>
      </div>
    </ewc-popover>
  </div>

  <style>#pop .ewc-popover__scrollable {  min-width: 108px; max-width: 108px;}</style>
  <ewc-popover id="pop" style="position: absolute; bottom: 3rem; right:5rem;">
    <span style="border: 1px solid; padding: 2px;">I have a popover too!</span>
    <div>
      <p>I am top of the pops</p>
      <p>or to the left</p>
      <p>In any case, I'm small</p>
    </div>
  </ewc-popover>
</body>

index.js

import "@ewc-lib/ewc-popover"