npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ruc-lib/context-menu

v2.0.1

Published

This library provides a flexible and customizable context menu component for your Angular applications. Users can integrate the dialog component using Angular services or selectors with ease. Below are the features, usage instructions, and integration det

Downloads

64

Readme

ruclib-context-menu

This library provides a flexible and customizable context menu component for your Angular applications. Users can integrate the dialog component using Angular services or selectors with ease. Below are the features, usage instructions, and integration details:

RUC Library Installation Guide

Users can easily install the RUC (Ruxptest Library) from npm. Additionally, they can also choose to install individual components based on their requirements.

Install complete library

npm install @uxpractice/ruc-lib

Install individual component

If users only need the dataflow component, they can install it separately npm install @ruc-lib/context-menu

Usage

To use the context menu component in your project, follow the integration guidelines provided in the documentation. Customize the context menu as per your requirements by adjusting the configuration options.

import required modules

Import ContextModule into app.module.ts file.

for library import { RuclibContextMenuModule } from '@uxpractice/ruc-lib/context-menu;

for seperate package import { RuclibContextMenuModule } from '@ruc-lib/context-menu;

use component selector

<uxp-ruclib-context-menu [rucInputData]="inputContextData"(rucEvent)="passEvent($event)">
</uxp-ruclib-context-menu>

Input and Output

Inputs:

• rucInputData -> Data to be passed to the context menu. [i.e- type, matIconName, matButtonColor, matButtonLabelName, imgUrl, alternateImg, contextMenuData[label, icon, disabled, submenu[{label, icon, id, disabled}] ], xPosition, yPosition, leftClick].

Outputs:

• rucEvent -> Event emitted from the context menu.

rucInputData (sample object)

Default value be like –

export const mockDataForInputContextData = {
type: 'icon',
matIconName: 'account_balance',
matButtonColor: 'primary',
matButtonLabelName: 'Click',
imgUrl: 'abc.jpg',
alternateImg: '',
contextMenuData: [
{ label: 'Copy', icon: 'file_copy', id: 1, disabled: true },
{ label: 'Create', icon: 'create', id: 2, disabled: false },
{
label: 'Send to',
icon: 'send',
disabled: false,
submenu: [
{ label: 'Bluetooth', id: 3, icon: 'bluetooth', disabled: false },
{ label: 'email', id: 4, icon: 'email', disabled: true },
],
},
],
xPosition: 'after',
yPosition: 'below',
leftClick: false,
};

Contribution

Contributions are welcome! Feel free to open issues or pull requests for any enhancements or fixes.

Acknowledgements

Thank you for choosing the Context menu Component Library. If you have any feedback or suggestions, please let us know!