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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@ruc-lib/context-menu

v3.1.0

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

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:

Installation guide

To use the Context Menu component, you can install the entire RUC library or just this specific component.

Install the Entire Library

npm install @uxpractice/ruc-lib

Install Individual Component

If you only need the Context Menu component

npm install @ruc-lib/context-menu

📦 Version Compatibility

Please ensure you install the correct version of @ruc-lib/context-menu based on your Angular version.

| Angular Version | Compatible @ruc-lib/context-menu Version | |--------------------|------------------------------------------------| | 15.x.x | npm install @ruc-lib/context-menu@^3.0.0 | | 16.x.x | npm install @ruc-lib/context-menu@^3.0.0 |

Usage

1. Import the Component

In your Angular component file (e.g., app.component.ts), import the RuclibContextMenuComponent:

import { Component } from '@angular/core';

// For Complete Library
import { RuclibContextMenuComponent } from '@uxpractice/ruc-lib/context-menu';

// For Individual Package
import { RuclibContextMenuComponent } from '@ruc-lib/context-menu';

@Component({
  selector: 'app-root',
  imports: [RuclibContextMenuComponent],
  templateUrl: './app.component.html',
})
export class AppComponent {
  // Component code here
}

2. Use the Component

In your component's template, use the <uxp-ruclib-context-menu> selector and pass the configuration object to the rucInputData input and the data array to the dataSource input.

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

API Reference

Component Inputs

| Input | Type | Description | |-------------------|--------------------|-----------------------------------------------------| | rucInputData | inputContextData | The main configuration object for the Context Menu. | | customTheme | string | An optional CSS class for custom theming. |

Component Outputs

| Output | Type | Description | |-------------------|-------------------|-------------------------------------------------------| | rucEvent | any | Emits events related to Context Menu actions |

inputContextData

This is the main configuration object for the Context Menu component.

| Property | Type | Description | |---------------------------|-----------|---------------------------------------------------------------------------| | type | string | Type of Context Menu. It can be icon, button, image | | matIconName | string | When Type is icon then matIconName is used for icon name. | | matButtonColor | string | When Type is button then matButtonColor is used for button type. | | matButtonLabelName | string | When Type is button then matButtonColor is used for Button Label. | | imgUrl | string | When Type is image then imgUrl is used for image source. | | alternateImg | string | When Type is image then alternateImg is used if image is not available. | | contextMenuData | string | Change the alignment of step count. | | xPosition | string | To set x-poition of context menu. It can be before or after | | yPosition | string | To set y-poition of context menu. It can be above or below | | leftClick | boolean | To set click event on which context menu will open. Its value can be true or false. If false then it will be right-clicked. If True then it will be left-clicked. |

Example Configuration

Here's an example of how to configure the Context Menu component in your component's TypeScript file.

import { Component } from '@angular/core';

// For Complete Library
import { inputContextData, TourGuideData } from '@uxpractice/ruc-lib/context-menu';

// For Individual package
import { inputContextData, TourGuideData } from '@ruc-lib/context-menu';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
})
export class AppComponent {
    inputContextData: inputContextData = {
        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,
    };

    passEvent(event: any) {
        console.log('Context Menu Event:', event);
    }
}

⚠️ IMPORTANT: Custom Theme Usage in Angular Material

When implementing custom themes, such as:

.custom-theme-1 {
  @include angular-material-theme($custom-theme);
}

// You must also include the typography mixin to ensure text styles are applied correctly as shown below:
.custom-theme-1 {
  @include angular-material-theme($custom-theme);
  @include mat.typography-level($theme-custom-typography-name, body-1);
}

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. If you have any feedback or suggestions, please let us know!