Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@ajustee/mde-popover

Package Overview
Dependencies
1
Maintainers
3
Versions
1
Issues
File Explorer

Advanced tools

@ajustee/mde-popover

A fork of @material-extended/mde

    4.0.0latest
    GitHub

Version published
Maintainers
3
Weekly downloads
797
increased by8.58%

Weekly downloads

Readme

Source

Angular Popover

A fork of https://github.com/joejordanbrown/popover and updated for Angular 12.

Original @material-extended/mde Popover Demo | StackBlitz Template

Project status

Angular Popover is production ready.

This was originally created as an example for a @angular/material issue feature request. Issue can be found at angular/material2#2691

If you'd like to contribute please create an issue or pull request.

Examples

Material theme picker

Material theme picker

Standard popover

image

image

Google+ style popover

image

Installation

Install npm package using:

yarn add @ajustee/mde-popover or npm install @ajustee/mde-popover

Install required packages @angular/cdk

yarn add @angular/cdk or npm install @angular/cdk

Initial setup

The CDK overlays depend on a small set of structural styles to work correctly. If you're using Angular Material, these styles have been included together with the theme, otherwise if you're using the CDK on its own, you'll have to include the styles yourself. You can do so by importing the prebuilt styles in your global stylesheet:

@import '~@angular/cdk/overlay-prebuilt.css';

Import module

app.module.ts

import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { MdePopoverModule } from '@ajustee/mde-popover'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, MdePopoverModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }

License

MIT © Joe Jordan Brown

Angular Popover by UIXD

Keywords

FAQs

Last updated on 28 May 2021

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc