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

@hallysonh/ngx-popover

v1.0.0

Published

Simple popover control for your angular7 applications using bootstrap4.

Downloads

8

Readme

@hallysonh/ngx-popover

Based on ngx-popover.

Simple popover control for your angular7 applications using bootstrap4. Does not depend of jquery. If you don't want to use it without bootstrap - simply create proper css classes. Please star a project if you liked it, or create an issue if you have problems with it.

angular 7 popover

Demo

Access a demo here or download this project and execute: yarn && yarn start or npm install && npm run start to self server it.

Installation

  1. Install npm module: npm install @hallysonh/ngx-popover --save

  2. Import the module in your app module

import { NgxPopoverModule } from '@hallysonh/ngx-popover';

@NgModule({
  imports: [BrowserModule, NgxPopoverModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}

Usage

After import NgxPopoverModule in your app, start using the component:

<div popover="content to be shown in the popover"
     popoverTitle="Popover header"
     popoverPlacement="top"
     [popoverOnHover]="false"
     [popoverCloseOnClickOutside]="true"
     [popoverCloseOnMouseOutside]="false"
     [popoverDisabled]="false"
     [popoverAnimation]="true"
     [popoverDismissTimeout]="1000">
    element on which this popover is applied.
</div>

Example of usage with dynamic html content:

<ng-template #myPopoverContent>
  <b>Very </b><span style="color: #C21F39">Dynamic </span><span style="color: #00b3ee">Reusable </span>
  <b><i><span style="color: #ffc520">Popover With </span></i></b><small>Html support </small>.
</ng-template>

<button [popover]="myPopoverContent"
  popoverTitle="Popover title"
  popoverPlacement="left"
  [popoverAnimation]="true"
  [popoverCloseOnClickOutside]="true">
  element on which this popover is applied.
</button>

Popover Directive Properties

  • popover="string" The message or template to be shown in the popover.
  • popoverTitle="string" Popover title text.
  • popoverPlacement="top|bottom|left|right|auto|auto top|auto bottom|auto left|auto right" Indicates where the popover should be placed. When using "auto" modifier, will show in opposite direction if not enough room. Default is "bottom".
  • [popoverDisabled]="true|false" Indicates if popover should be disabled. If popover is disabled then it will not be shown. Default is false
  • [popoverAnimation]="true|false" Indicates if all popover should be shown with animation or not. Default is true.
  • [popoverOnHover]="true|false" If set to true then popover will open on mouse over instead of mouse click. Default is false.
  • [popoverCloseOnMouseOutside]="true|false" Indicates if popover should be closed when user mouse outside of it. Default is false.
  • [popoverCloseOnClickOutside]="true|false" Indicates if popover should be closed when user click outside of it. Default is false.
  • [popoverDismissTimeout]="number" Used to automatically dismiss popover after given amount of time. Default is 0, means disabled.

Sample

import { NgModule, Component } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxPopoverModule } from '@hallysonh/ngx-popover';

@Component({
  selector: 'app',
  template: `
<div class="container">

  <!-- regular popover -->
  <p>
    Message <span popover="Hello fact!" popoverTitle="Fact #1"><b>click this fact</b></span>
  </p>

  <!-- popover with dynamic html content -->
  <br /><br />
  <div>
    <ng-template #myPopoverContent let-popover="popover">
      <b>Very </b><span style="color: #C21F39">Dynamic </span><span style="color: #00b3ee">Reusable </span>
      <b><i><span style="color: #ffc520">Popover With </span></i></b><small>Html support </small>.
      Click outside of this popover and it will be dismissed automatically.
      <button (click)="popover.hide()">click here to close it</button>.
    </ng-template>

    <button [popover]="myPopoverContent" popoverTitle="this header can be omitted" popoverPlacement="right" [popoverCloseOnClickOutside]="true">click
      this button to see a popover</button>
  </div>

  <!-- popover show on hover -->
  <br />
  <div>
    <button popover="Hello popover" [popoverOnHover]="true">hover this button to see a popover</button>
  </div>
</div>
`,
})
export class App {}

@NgModule({
  imports: [BrowserModule, NgxPopoverModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}

Take a look on samples app in ./app for more examples of usages.