Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ecodev/fab-speed-dial

Package Overview
Dependencies
Maintainers
3
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ecodev/fab-speed-dial

[![Build Status](https://travis-ci.com/Ecodev/fab-speed-dial.svg?branch=master)](https://travis-ci.com/Ecodev/fab-speed-dial) [![Total Downloads](https://img.shields.io/npm/dt/@ecodev/fab-speed-dial.svg)](https://www.npmjs.com/package/@ecodev/fab-speed-di

  • 5.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.4K
increased by22.26%
Maintainers
3
Weekly downloads
 
Created
Source

Angular Material FAB speed dial

Build Status Total Downloads Latest Stable Version License Join the chat at https://gitter.im/Ecodev/fab-speed-dial

This is a FAB speed dial component for Angular Material (v7+).

See the component in action on the demo page.

Install

  1. Install the library:
    yarn add @ecodev/fab-speed-dial
    
  2. In app.module.ts add the following modules to the imports array:
    • MatButtonModule
    • MatIconModule
    • EcoFabSpeedDialModule

Usage

The following is an example of a minimal template. Either implement a doAction(), or adapt the bindings to your needs:

<eco-fab-speed-dial>
    <eco-fab-speed-dial-trigger>
        <button mat-fab (click)="doAction('trigger')"><mat-icon>menu</mat-icon></button>
    </eco-fab-speed-dial-trigger>

    <eco-fab-speed-dial-actions>
        <button mat-mini-fab (click)="doAction('action1')"><mat-icon>add</mat-icon></button>
        <button mat-mini-fab (click)="doAction('action2')"><mat-icon>edit</mat-icon></button>
        <button mat-mini-fab (click)="doAction('action3')"><mat-icon>search</mat-icon></button>
    </eco-fab-speed-dial-actions>
</eco-fab-speed-dial>

Properties

eco-fab-speed-dial

PropertyTypeDefaultDescription
openbooleanfalseIndicates if this FAB Speed Dial is opened
directionup, down, left or rightupThe direction to open the action buttons
animationModefling or scaleflingThe animation to apply when opening the action buttons
fixedbooleanfalseIndicates if this FAB Speed Dial is fixed (user cannot change the open state on click)

eco-fab-speed-dial-trigger

PropertyTypeDefaultDescription
spinbooleanfalseEnables the rotation of the trigger action when the speed dial is opening

Additionally to spin property, add class "spin180" or "spin360" on html content inside of eco-fab-speed-dial-trigger tag to activate rotation on a specific element.

In case of buttons, the icon should rotate not the whole button (box-shadow would rotate too).

Development

The most useful commands for development are:

  • yarn dev to start a development server
  • yarn build-demo to build the demo locally (it will be published automatically by Travis)
  • git tag -a 1.2.3 && git push to publish the lib to npm (via Travis deploy mechanism)

TODO List

  • Change color of the fab buttons on hover/selection
  • Make the trigger button change icon when the user open the speed dial (configurable)
  • Let the speed dial open a "sheet" of material instead of just mini-fab action buttons

Prior work

This lib was originally based on angular-smd, and its various forks, itself based on AngularJS FAB Speed Dial.

FAQs

Package last updated on 27 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc