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

lintel-contrib-popovers

v0.1.3

Published

Popovers for lintel.

Downloads

12

Readme

lintel-contrib-popovers

Popovers for lintel.

npm Bower

Getting Started

This module requires Lintel.

If you haven't used Lintel before, be sure to check out the Getting Started guide, as it explains how to install and use this module. Once you're familiar with that process, you may install this module with this command:

bower install lintel-contrib-popovers --save

Once the module has been installed, you will have to load it in your main SASS file:

@import "bower_components/lintel-contrib-popovers/sass/popovers.scss"

This module also includes a JavaScript component, which you will have to load separately.

<script src="bower_components/lintel-contrib-popovers/dist/popovers.min.js" type="text/javascript"></script>

You can use wiredep or grunt-wiredep to automatically inject files in your build process.

Variables

Check the vars file in the sass folder to see the full list of variables you can customize.

$popover-include-states

Default value: true

Include styling for the default states.

$popover-padding-y & $popover-padding-x

Change the padding-top/bottom and padding-left/right.

Also available for finer control:
$popover-header-padding-*
$popover-body-padding-*
$popover-footer-padding-*

$popover-animate

Default value: $animate-fast

Default fade-in speed.

$popover-arrow-width

Default value: 15px

$popover-bg

Default value: #fff

$popover-border

Default value: $border-dark

$popover-border-radius

Default value: $border-radius-base

$popover-box-shadow

Default value: $box-shadow-light

$popover-text

Default value: $text-base

Popover font color.

$popover-z-index

Default value: $z-index-2xl

$popover--bg, $popover--border, $popover-*-text

Change the header, body, or footer background, border, and text color.

$popover-title-font-size

Default value: $font-size-h4

$popover-close-opacity

Default value: 0.4

$popover-close-padding-y

Default value: 0

$popover-close-padding-x

Default value: 0

$popover-*-min

Min-width for the default sizes (xs, sm, md, lg, xl). Change md for the default popover width.

Mixins

Check the mixins file in the sass folder to see how you can extend this module.

popover-state($bg, $border, $text) {

Creates a new popover state.

.popover-primary {
  @include popover-state(
    $bg: $popover-primary-bg,
    $border: $popover-primary-border,
    $text: $popover-primary-text
  );
}

JavaScript

Options

Name | Type | Default | Description --------- | ------------------------------ | ------------------- | ----------- onShow | function | | Callback function to execute every time popover is shown. onHide | function | | Callback function to execute every time popover is hidden. esc | boolean | true | Close popover on escape key. show | boolean | true | Show popover when invoking .popover()

Methods

Name | Parameters | Description --------- | ------------------------ | ----------- toggle | (options, relatedTarget) | Toggle popover. Related target required first time popover is shown. show | (options, relatedTarget) | Show popover. Related target required first time popover is shown. hide | | Hide popover.

Events

Event | Description ---------------------- | ------------------------------ show.lt.popover | Fires immediately before popover is shown. Can prevent popover from showing here. Trigger button (if provided) can be accessed under relatedTarget. shown.lt.popover | Fires immediately after popover is shown. hide.lt.popover | Fires immediately before popover is hidden. Can prevent popover from hiding here. hidden.lt.popover | Fires immediately after popover is hidden.

Data-attr

Add data-toggle="popover" and data-target="#selector" to a button/element. You can add additional options as data-attributes.

<button type="button" data-toggle="popover" data-target="#myPopover">
  Popover
</button>
<div id="myPopover" class="popover">
...
</div>

jQuery

Call the jQuery plugin on the popover, passing in any options and the related target (button).

var options = {
  placement: 'bottom',
  onShow: function(popover, button) {
    console.log('onShow', popover, button);
  },
  onHide: function(popover, button) {
    console.log('onHide', popover, button);
  }
};

$('#myButton').click(function(e) {
  $('#myPopover').popover(options, this); // this == button
});

Alternatively, you can use the default options:

$('#myButton').click(function(e) {
  $('#myPopover').popover('toggle', this); // this == button
});

Examples

Popover Template

<div class="popover" id="myPopover" tabindex="-1" role="dialog" aria-hidden="true">
  <div class="popover-content">
    <div class="popover-header">
      <button type="button" class="popover-close" data-toggle="popover-close" aria-label="Close"><span aria-hidden="true">&times;</span></button>
      <h1 class="popover-title">Popover Title</h1>
    </div>
    <div class="popover-body">
      <div class="form-group">
        <label class="form-label">
          Email
          <input class="form-control" type="text" placeholder="Email">
        </label>
      </div>
      <div class="form-group">
        <label class="form-label">
          Password
          <input class="form-control" type="password" placeholder="Password">
        </label>
      </div>
    </div>
    <div class="popover-footer">
      <div class="btn-group">
        <button class="btn" type="button">Cancel</button>
        <button class="btn btn-primary" type="button">OK</button>
      </div>
    </div>
  </div>
</div>

Popover Header

<div class="popover-header">
  <h1 class="popover-title">Popover Title</h1>
</div>

Popover Header with Linked Title

<div class="popover-header">
  <h1 class="popover-title">
    <a href="#" class="popover-title-link">Popover Title</a>
  </h1>
</div>

Popover Header with Close Button

<div class="popover-header">
  <button type="button" class="popover-close" data-toggle="popover-close" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  <h1 class="popover-title">
    <a href="#" class="popover-title-link">Popover Title</a>
  </h1>
</div>

Popover Header with Right Side Actions

NOTE: There should be no whitespace after .popover-header-actions. See Fighting the Space Between Inline Block Elements.

<div class="popover-header">
  <div class="popover-header-actions">
    <div class="btn-group">
      <button class="btn" type="button">Cancel</button>
      <button class="btn btn-primary" type="button">OK</button>
    </div>
    <button type="button" class="popover-close" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  </div><!--
  --><h1 class="popover-title">Popover Title</h1>
</div>

Popover Footer with Right Side Actions

NOTE: There should be no whitespace after .popover-footer-actions. See Fighting the Space Between Inline Block Elements.

<div class="popover-footer">
  <div class="popover-footer-actions">
    <div class="btn-group">
      <button class="btn" type="button">Cancel</button>
      <button class="btn btn-primary" type="button">OK</button>
    </div>
  </div><!--
  --><button class="btn" type="button">
    Left Button
  </button>
</div>

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

License

Copyright (c) 2015 Marius Craciunoiu. Licensed under the MIT license.