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

@rubeusteam/rb-angular-components

v0.0.28

Published

Correção referência paginação e ordenação

Readme

RbAngularComponents

Este projeto foi gerado usando o Angular CLI versão 19.1.8.

This project was generated using Angular CLI version 19.1.8.

Visão Geral | Overview

RbAngularComponents é uma biblioteca de componentes, diretivas, serviços e pipes Angular criada para acelerar o desenvolvimento de interfaces com consistência e boas práticas.

RbAngularComponents is a library of Angular components, directives, services, and pipes designed to accelerate UI development with consistency and best practices.

Requisitos

  • Angular >= 15 (suporta componentes standalone)
  • Node.js >= 18.x
  • npm >= 9.x
  • Angular Material (alguns componentes são baseados nele)

Requirements

  • Angular >= 15 (supports standalone components)
  • Node.js >= 18.x
  • npm >= 9.x
  • Angular Material (some components are based on it)

Instalação | Installation

Instale a biblioteca via npm:

Install the library via npm:

npm install rb-angular-components

Uso em Componentes Standalone | Usage in Standalone Components

Você pode importar qualquer componente, diretiva ou pipe diretamente em seu componente standalone.

You can import any component, directive, or pipe directly into your standalone component.

import { RbCrudComponent } from 'rb-angular-components';

@Component({
  standalone: true,
  imports: [RbCrudComponent],
  selector: 'app-demo',
  template: '<rb-crud></rb-crud>'
})
export class DemoComponent {}

Uso em Módulos Angular (NgModules) | Usage in Angular Modules (NgModules)

Se seu projeto usa NgModules, ainda assim você pode usar os componentes standalone importando-os no array imports.

If your project uses NgModules, you can still use the standalone components by importing them in the imports array.

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RbCrudComponent } from 'rb-angular-components';

@NgModule({
  imports: [
    CommonModule,
    RbCrudComponent // standalone component
  ]
})
export class MyModule {}

Opcionalmente, você pode criar um módulo compartilhado que agrupe e exporte todos os componentes standalone para conveniência.

Optionally, you can create a shared module that groups and exports all standalone components for convenience.

Recursos Disponíveis

  • Componentes (ex: RbCrudComponent, RbFilterComponent)
  • Diretivas (ex: RbDynamicButtonDirective)
  • Pipes (ex: RbCustomPipe)
  • Serviços (ex: ClientFilterService)
  • Traduções (ex: PaginatorPtbrIntlService)

Available Resources

  • Components (e.g., RbCrudComponent, RbFilterComponent)
  • Directives (e.g., RbDynamicButtonDirective)
  • Pipes (e.g., RbCustomPipe)
  • Services (e.g., ClientFilterService)
  • Translations (e.g., PaginatorPtbrIntlService)

Documentação por Recurso | Documentation by Feature

Você pode acessar a documentação de cada recurso em sua respectiva pasta:

You can access documentation for each feature in its respective folder:


Recursos Adicionais | Additional Resources

Para uso do Angular CLI e comandos, veja a Referência do Angular CLI.

For Angular CLI usage and commands, see the Angular CLI Reference.