Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@types/micromodal
Advanced tools
TypeScript definitions for micromodal
npm install --save @types/micromodal
This package contains type definitions for micromodal (https://github.com/ghosh/micromodal#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/micromodal.
/**
* MicroModal configuration options
*/
export interface MicroModalConfig {
/** This is fired when the modal is opening. */
onShow?: ((modal?: HTMLElement) => void) | undefined;
/** This is fired when the modal is closing. */
onClose?: ((modal?: HTMLElement) => void) | undefined;
/** Custom data attribute to open modal. Default is data-micromodal-trigger. */
openTrigger?: string | undefined;
/** Custom data attribute to close modal. Default is data-micromodal-close. */
closeTrigger?: string | undefined;
/** Custom class to be applied when modal is open. Default class is is-open. */
openClass?: string | undefined;
/** This disables scrolling on the page while the modal is open. The default value is false. */
disableScroll?: boolean | undefined;
/** Disable auto focus on first focusable element. Default is false */
disableFocus?: boolean | undefined;
/**
* Set this to true if using css animations to open the modal.
* This allows it to wait for the animation to finish before focusing on an element inside the modal. Default is false
*/
awaitOpenAnimation?: boolean | undefined;
/**
* Set this to true if using css animations to hide the modal.
* This allows it to wait for the animation to finish before removing it from the DOM. Default is false
*/
awaitCloseAnimation?: boolean | undefined;
/** This option suppresses the console warnings if passed as true. The default value is false. */
debugMode?: boolean | undefined;
}
/**
* MicroModal controller
*/
declare namespace MicroModal {
/**
* Binds click handlers to all modal triggers
* @param config configuration options
*/
function init(config?: MicroModalConfig): void;
/**
* Shows a particular modal
* @param targetModal The id of the modal to display
* @param config configuration options
*/
function show(targetModal: string, config?: MicroModalConfig): void;
/**
* Closes the active modal
*/
function close(targetModal?: string): void;
}
export default MicroModal;
These definitions were written by Wayne Carson.
FAQs
TypeScript definitions for micromodal
We found that @types/micromodal 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.