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

lobicard

v1.0.1

Published

jQuery plugin for bootstrap 4 cards. It extends cards with several common and useful functions.

Downloads

43

Readme

LobiCard

jQuery plugin for bootstrap 4 cards. It extends cards with several common and useful functions.

This is a fork of Lobipanel, migrating the library from Bootstrap 3 to Bootstrap 4.

Differences to LobiPanel

  • Switched Less to SASS, giving compatibility with Bootstrap 4
  • Glyphicons has been dropped from Bootstrap, LobiCard now uses Font Awesome by default
  • Clean up usage of "", now more consistently uses ''
  • Improve support for use through NPM as well as Bower. Note: To make this more compatible in NPM I've changed a dependency from 'jquery-ui-touch-punch-improved' to 'jquery-ui-touch-punch'...
  • Updated the version of JQuery and JQuery UI
  • Added JS/HTML hinting and beautification configs
  • Less working files committed to Git
  • Updated lib folder
  • Added some margin between control icons
  • Fix an issue using jquery's load(), which now assumes POST if the params is an object - params is now a string by default
  • Tooltip destroy issue resolves as in Bootstrap 4 it is now dispose.
  • When editing a card's title the contained HTML is retained. Previous behaviour was to allow a user to edit the text only and does a direct replacement, now the HTML is retrieved.

Known issues

Since Bootstrap 4 has not been released yet there are still some issues that may well be related to other known issues. If in doubt, check Bootstrap's Issue tracker. Here are some I've found so far:

Uncaught Error: Tooltip is transitioning

This appears to be an issue in Bootstrap 4, e.g. #21607. There is a fix for this that will become available with the first beta of Bootstrap 4. See PR#21743 for more information. Until then #21607 does give some workarounds, or just survive with the error until Bootstrap 4 Beta is released.

Features

  • Sort, drag, expand, resize, minimize bootstrap cards
  • Specify url and load content in card from this url
  • Change the name of the card
  • Customize action icons and action tooltips
  • Works for nested cards
  • HTML5 localStorage support
    • Save card state: (pinned, unpinned, collapsed, fullscreen, minimized) and apply it on page load
    • Save card position among siblings and apply on next time

Dependencies

LobiCard is depended on jQuery, jQuery UI and Bootstrap 4.

Compiling

The package now uses sass rather than less. So, if you are developing on Windows you will need to install Ruby making sure to add the executable to your path, and then install SASS by opening a new command window and executing gem install sass.

Installation

Below demonstrates installation with bower, but npm can be used too by simply changing the directory bower_components to node_modules.

<!DOCTYPE html>
<html>
   <head>
        <!--Installation using bower -->
        <link rel="stylesheet" href="bower_components/tether/dist/css/tether.min.css"/>
        <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"/>
        <link rel="stylesheet" href="bower_components/jquery-ui/themes/ui-lightness/jquery-ui.min.css"/>
        <link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css"/>

        <link rel="stylesheet" href="dist/css/lobicard.min.css"/>
   </head>

    <body>
        ...
        <!--Installation using bower -->
        <script src="bower_components/jquery/dist/jquery.min.js"></script>
        <script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
        <script src="bower_components/jquery-ui-touch-punch-improved/jquery.ui.touch-punch-improved.js"></script>
        <script src="bower_components/tether/dist/js/tether.min.js"></script>
        <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>

        <script src="dist/js/lobicard.js"></script>

   </body>
</html>

Usage

index.html contains a series of examples of Lobicard's usage.

For more complete documentation and examples visit Lobipanels's home page. This fork only tries to make this library more compatible with Bootstrap 4, not change the API.