Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ngx-floating-action-menu-fork
Advanced tools
NOTE: Fork version with custom button colors
updated version of ng2-floating-button
$ npm install ng2-floating-action-menu --save
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { FloatingActionMenuModule } from 'ng2-floating-action-menu';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify your library as an import
FloatingActionMenuModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
component.html
<ng2-floating-action-menu
[placement]="config.placment"
[effect]="config.effect"
[label]="config.label"
[iconClass]="config.iconClass"
[activeIconClass]="config.activeIconClass"
[toggle]="config.toggle"
[buttons]="buttons">
</ng2-floating-action-menu>
component.ts
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app';
config;
buttons: Array<FloatingActionButton> = [
{
iconClass: 'ion-social-github',
label: 'follow me on github',
onClick: function(){
}
},
{
iconClass: 'ion-social-facebook',
label: 'follow me on facebook',
onClick: function(){
}
},
{
iconClass: 'ion-social-linkedin',
label: 'linkedin',
onClick: function(){
}
},
];
placements = [
{
value: 'br',
key: 'bottom right'
},
{
value: 'bl',
key: 'bottom left'
},
{
value: 'tr',
key: 'top right'
},
{
value: 'tl',
key: 'top left'
},
];
effects = [
{
value: 'mfb-zoomin',
key: 'Zoom In'
},
{
value: 'mfb-slidein',
key: 'Slide In + Fade'
},
{
value: 'mfb-fountain',
key: 'Fountain'
},
{
value: 'mfb-slidein-spring',
key: 'Slide In (Spring)'
}
];
toggles = [
'click',
'hover'
];
constructor() {
this.config = {
placment: 'br',
effect: 'mfb-zoomin',
label: 'main button label',
iconClass: 'ion-plus-round',
activeIconClass: 'ion-close-round',
toggle: 'click',
buttons: this.buttons
};
}
}
MIT © Shalva Jashiashvili
FAQs
**NOTE: Fork version with custom button colors**
We found that ngx-floating-action-menu-fork demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.