Angular Material Extended
npm install @material-extended/mde




#### Links
Popover Demo | StackBlitz Template
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.
Material theme picker

Standard popover
Google+ style popover
yarn add @material-extended/mde
ornpm install @material-extended/mde
Install required packages @angular/cdk
yarn add @angular/cdk
ornpm install @angular/cdk
@import '~@angular/cdk/overlay-prebuilt.css';
app.module.ts
``typescript
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 { }
``
| Feature | Notes | Docs |
|---------|--------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
| popover | In-progress (popover demo) | Docs |
Please report bugs and issues here.
###
