Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@material-extended/mde

material-extended22.1kMIT3.0.3TypeScript support: included

Angular Material Extended

angular, angular popover, material, material design, material extended, material popover, components, popover

readme

Angular Popover

npm version Build Status Conventional Commits Join the chat at https://gitter.im/material-extended/mde FOSSA Status

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 @material-extended/mde or npm install @material-extended/mde

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 '@material-extended/mde';

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

Todo

  1. A design document needs creating to finalise requirements and API specifications. Once a document is created the component can be refactored and released as beta for testing.
  2. Refactor now that @angular/cdk is released.

Available features

Feature Notes Docs
popover In-progress (popover demo) Docs

Issues

Please report bugs and issues here.

License

MIT © Joe Jordan Brown

Angular Popover by UIXD

FOSSA Status

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

3.0.3 (2020-06-10)

3.0.1 (2020-06-10)

3.0.0 (2020-02-12)

2.3.1 (2019-07-18)

Bug Fixes

  • popover: add markForCheck for onpush strategy fixes #57 (3af3b62)

2.3.0 (2019-06-28)

Bug Fixes

Features

  • demo: add cdkFocusInitial (5b530fd)
  • popover: add mdeFocusTrapAutoCaptureEnabled option (4802a96)

2.2.2 (2019-06-02)

2.2.1 (2019-06-02)

Update

  • popover: Update to Angular 8 (106b051)

2.2.0 (2019-05-14)

Bug Fixes

  • popover: arrow orientation on first popover opening fix (#45) (488d556)

Features

  • popover: add disableAnimation option (#46) (76c4812)

2.1.1 (2018-12-11)

2.1.0 (2018-09-15)

Features

  • demo: add mdePopoverBackdropCloseOnClick option (eb4a881)
  • MdePopoverTrigger: add mdePopoverBackdropCloseOnClick option, closes #36 (9164650)

2.0.3 (2018-09-15)

Bug Fixes

  • library: add missing peer dependency @angular/animations (78ab045)
  • MdePopoverTrigger: fix compile errors in 'fullTemplateTypeCheck' mode, closes #25 (1fdf413)
  • MdePopoverTrigger: remove mouseoverTimer on destroyPopover, closes #34 (674b4e2)
  • popover: event undefined with _handleMousedown #26 (9eb7391)

2.0.2 (2018-08-15)

Bug Fixes

  • MdePopoverTrigger: fix compile errors in 'fullTemplateTypeCheck' mode, closes #25 (1fdf413)

2.0.1 (2018-05-24)

Bug Fixes

  • library: add missing peer dependency @angular/animations (78ab045)
  • popover: event undefined with _handleMousedown #26 (9eb7391)

2.0.0 (2018-05-18)

1.0.0-alpha.10 (2018-02-22)

1.0.0-alpha.9 (2018-02-22)

1.0.0-alpha.8 (2018-02-22)

1.0.0-alpha.7 (2018-02-22)

Bug Fixes

  • popover: set _classList to public issue #21 (2d07731)
  • popover: update to use panelClass (204383e)

1.0.0-alpha.6 (2017-11-13)

Bug Fixes

  • MdePopoverTrigger: change _elementRef to public (b5e9867)

1.0.0-alpha.5 (2017-11-08)

1.0.0-alpha.4 (2017-09-22)

Bug Fixes

  • docs: fix incorrect component name (0939cb6)
  • docs: update popover documentation link (a2636f4)
  • overlay: OverlayState has been renamed to OverlayConfig in CDK (0103c0f)

1.0.0-alpha.3 (2017-09-04)

1.0.0-alpha.2 (2017-09-04)

Bug Fixes

  • build: include secondary entry-points of the CDK package (fa1bbf3)

1.0.0-alpha.1 (2017-09-04)

Bug Fixes

  • build: include secondary entry-points of the CDK package (2726c7b)

1.0.0-alpha.0 (2017-08-31)

0.1.0-alpha.13 (2017-08-31)

Bug Fixes

  • export: remove export causing problem (5144b19)

0.1.0-alpha.12 (2017-08-31)

Bug Fixes

  • export: remove export causing problem (5144b19)

0.1.0-alpha.11 (2017-08-08)

0.1.0-alpha.10 (2017-08-07)

Bug Fixes

0.1.0-alpha.9 (2017-08-07)

0.1.0-alpha.8 (2017-07-26)

Bug Fixes

  • popover: fixed multiple popover issue #4 (92c9f40)

0.1.0-alpha.7 (2017-07-24)

Bug Fixes

  • build: fixed a problem with the UMD build, issue #2 (e557e72)

0.1.0-alpha.6 (2017-07-21)

Bug Fixes

  • popover: fixed multiple popovers issue #2 (0c474bc)

0.1.0-alpha.5 (2017-07-20)

Bug Fixes

  • propover-errors: correct error messages with new API names (0555468)

0.1.0-alpha.4 (2017-07-20)

Bug Fixes

  • rxjs: fix rxjs errors related to not exposed module (4efbcd0)

Features

  • coverage: add coverage reports (43e340a)
  • coverage: add coverage reports (1cb6fef)

0.1.0-alpha.3 (2017-07-14)

0.1.0-alpha.2 (2017-07-13)

0.1.0-alpha.1 (2017-07-13)

0.1.0-alpha.0 (2017-07-13)