
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ng-panel-js
Advanced tools
Swipe card module written in Angular. This components replicates the material design bottom sheet component.
Swipe card module written in Angular. This components replicates the material design bottom sheet component.
npm i ng-panel-js hammerjs
...
import { PanelJsModule, PanelJsService, PanelJSConfig } from 'panel-js';
const panelJSConfig: PanelJSConfig = {
stage0: 0.3,
stage1: 0.8,
persistent: false,
}
@NgModule({
...,
imports: [
...,
PanelJsModule.forRoot(panelJSConfig),
],
providers: [
...,
PanelJsService
]
})
export class AppModule { }
<panel-js>
<mat-card></mat-card>
</panel-js>
The body containing the panel must be set to position fixed
body {
margin: 0;
width: 100%;
height: 100%;
position: fixed;
}
If the panel module is configured as persistent it will be displayed on the page and cannot be swipped away. If the panel is not persistent it will by default not be on the page, you can trigger it with the toggle() method.
FAQs
Swipe card module written in Angular. This components replicates the material design bottom sheet component.
We found that ng-panel-js 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.