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

@libs-ui/components-badge

v0.2.352-3

Published

## Giới thiệu

Readme

Badge

Giới thiệu

@libs-ui/components-badge là một component Angular linh hoạt để hiển thị các chỉ số số học như thông báo, trạng thái và số liệu quan trọng. Component hỗ trợ nhiều chế độ hiển thị, trạng thái active và tooltip tùy chỉnh.

Tính năng

  • Định dạng số: hiển thị số nguyên, với dấu cộng, viết tắt K (nghìn) và M (triệu)
  • Hỗ trợ trạng thái active
  • Tooltip thông tin với cấu hình linh hoạt (IPopoverOverlay)
  • Tùy chỉnh giao diện bằng CSS class và điều khiển margin

Cài đặt

Yêu cầu

  • Angular 18.0.0 trở lên
  • Tailwind CSS 3.3.0 trở lên

Để cài đặt component badge, sử dụng npm hoặc yarn:

npm install @libs-ui/components-badge

hoặc

yarn add @libs-ui/components-badge

Sử dụng

Inline Template

import { Component } from '@angular/core';
import { LibsUiComponentsBadgeComponent } from '@libs-ui/components-badge';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [LibsUiComponentsBadgeComponent],
  template: `
    <libs_ui-components-badge
      [count]="newMessages"
      [mode]="'k'"
      [active]="true"
      [popoverConfig]="{ content: newMessages + ' tin nhắn mới' }"></libs_ui-components-badge>
  `,
})
export class ExampleComponent {
  newMessages = 12;
}

File HTML riêng

import { Component } from '@angular/core';
import { LibsUiComponentsBadgeComponent } from '@libs-ui/components-badge';

@Component({
  selector: 'app-tooltip-example',
  standalone: true,
  imports: [LibsUiComponentsBadgeComponent],
  templateUrl: './tooltip-example.component.html',
})
export class TooltipExampleComponent {
  newMessages = 12;
}
<libs_ui-components-badge
  [count]="newMessages"
  [popoverConfig]="{ content: newMessages + ' tin nhắn mới' }"
  [active]="true"></libs_ui-components-badge>

Công nghệ sử dụng

  • Angular 18: standalone components, Signals
  • Tailwind CSS: cho styling

API Reference

Inputs

| Tên | Kiểu | Mặc định | Mô tả | | -------------------------- | ----------------- | ------------------------- | ----------------------------------------------------------------------------- | | count | number | 0 | Số cần hiển thị trong badge | | mode | TYPE_BADGE_MODE | undefined | Chế độ hiển thị: 'x' | 'x+' | '+x' | 'k' | '0x' | | active | boolean | undefined | Xác định badge có đang ở trạng thái active hay không | | maxCount | number | Number.MAX_SAFE_INTEGER | Số tối đa để hiển thị trước khi áp dụng định dạng | | popoverConfig | IPopoverOverlay | undefined | Cấu hình popover khi di chuột qua badge | | ignoreMarginDefault | boolean | undefined | Bỏ qua margin mặc định bên trái của badge | | classCircle | string | libs-ui-font-h6r | CSS class cho vòng tròn badge | | ignoreStopPropagationEvent | boolean | true | Bỏ qua việc lan truyền sự kiện khi nhấp vào badge |

Outputs

Thư viện không có Outputs.

Interfaces

IBadge

export interface IBadge {
  mode?: TYPE_BADGE_MODE;
  count?: number;
  maxCount?: number;
  classCircle?: string;
}

Định nghĩa cấu hình badge (inputs).

TYPE_BADGE_MODE

export type TYPE_BADGE_MODE = 'x' | 'x+' | '+x' | 'k' | '0x';

Định nghĩa các chế độ hiển thị badge.

IPopoverOverlay

interface IPopoverOverlay {
  content: string | TemplateRef<any>;
  width?: string;
  position?: string;
  zIndex?: number;
  offset?: { x?: number; y?: number };
}

Định nghĩa cấu hình cho popover hiển thị khi di chuột qua badge.