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/tab

v3.1.1

Published

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

Readme

ruclib-tab

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

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 the Entire Library

npm install @uxpractice/ruc-lib

Install Individual Component

If you only need the Metered Progress Bar component:

npm install @ruc-lib/tab

Version Compatibility

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

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

Usage

1. Import the Module

In your Angular module file (e.g., app.module.ts), import the RuclibTabModule:

import { RuclibTabModule } from '@ruc-lib/tab';
import { AppComponent } from './app.component';
import { NgModule } from '@angular/core';
import { MatIconModule } from '@angular/material/icon';
import { MatCardModule } from '@angular/material/card';
import { BrowserModule } from '@angular/platform-browser';

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    RuclibTabModule,
    MatIconModule,
    MatCardModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule {}

2. Use the Component

In your component's template, use the <uxp-ruclib-tab> selector and pass the configuration object to the rucInputData input.

<uxp-ruclib-tab [rucInputData]="rucinputObjectDataTab" [dataSource]="dataSourceTab" [customTheme]="customTheme" (rucEvent)="passEvent($event)"></uxp-ruclib-tab>

API Reference

Component Inputs

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

tabDefaultConfig

This is the main configuration object for the tab.

| Property | Type | Description | |-----------------------------|--------------------------------------------------|---------------------------------------------------------------------------------------------------------| | tabId | number | An optional unique identifier for the tab | | tabName | string | The mandatory text label that appears on the tab | | tabContent | string | The mandatory content to be displayed when this tab is active. This can be plain text or HTML. | | isDisabled | boolean | Determines if the tab is disabled. When true, the tab cannot be selected and appears visually disabled. | | isActive | boolean | Indicates whether the tab is currently active. Only one tab should be active at a time. | | iconName | string |The name of the icon to display in the tab header. Should be a valid icon name from the icon library being used (e.g., Material Icons). | | closeIcon | boolean | The name of the close icon to display in the tab header.This is typically shown for closable tabs. If not provided, a default close icon will be used. labels. |

tabDefaultDataSource

This object defines the configuration for dataSource for tab.

| Property | Type | Description | |-----------|------------------------------------|--------------------------------------------------------------------------| | animationDuration | number | The duration of the animation when switching between tabs, in milliseconds.This controls the speed of the tab transition effect. | | alignTabs | string |Specifies the alignment of the tab headers within the tab container.Common values include 'start', 'center', 'end', or 'stretch'. | | headerPosition | string | Determines the position of the tab headers relative to the tab content.Possible values: 'above', 'below', 'left', 'right'. | | backgroundColor | string | The background color of the tab component. Can be any valid CSS color value (hex, rgb, rgba, named colors, etc.). | | color | string | The text color of the tab headers. Can be any valid CSS color value. | | isActivetabIndex | number | The index of the tab that should be active by default (zero-based).If not specified, the first tab (index 0) will be active by default. |

Input and Output

Inputs:

• dataSource -> Data to be passed to the tab.
[i.e- tabId, tabName, tabContent, isDisabled, isActive, iconName, closeIcon].

• rucInputData -> Input Data to be passed to the tab.
[i.e- animationDuration, alignTabs, headerPosition, isActivetabIndex].

• customTheme: Custom styling/theme for the tab.

Outputs:

• rucEvent -> Event emitted from the tab.

Example Configuration

export const mockDataForDataSourceTab = [
{ tabId: 1,
tabName: 'tabName1',
tabContent: 'tabContent1',
isDisabled: false,
isActive: true,
iconName: 'book',
closeIcon: false,
},
{
tabId: 2,
tabName: 'tabName2',
tabContent: 'tabContent2',
isDisabled: false,
isActive: false,
iconName: 'cloud',
closeIcon: false,
},
];
export const mockDataForRucinputObjectDataTab = {
animationDuration: 2000,
alignTabs: 'start',
headerPosition: 'top',
isActivetabIndex: 2,
};

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