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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@libs-ui/components-inputs-keyboard

v0.2.356-3

Published

> Component bàn phím số (Numeric Keypad) hỗ trợ nhập liệu bằng chuột và bàn phím cứng.

Readme

@libs-ui/components-inputs-keyboard

Component bàn phím số (Numeric Keypad) hỗ trợ nhập liệu bằng chuột và bàn phím cứng.

Giới thiệu

LibsUiComponentsInputsKeyboardComponent cung cấp giao diện bàn phím số trực quan (0-9, *, #). Component này tự động lắng nghe các sự kiện từ bàn phím cứng của người dùng để đồng bộ hóa việc nhập liệu, phù hợp cho các màn hình nhập mã PIN, mật khẩu số hoặc các ứng dụng Dialer.

Tính năng

  • ✅ Giao diện bàn phím số tiêu chuẩn (0-9, *, #)
  • ✅ Đồng bộ hóa tự động với bàn phím cứng (0-9)
  • ✅ Hiển thị kết quả nhập liệu nội bộ trực quan
  • ✅ Emit mã code phím đã chọn qua output event
  • ✅ Sử dụng Angular Signals cho hiệu năng cao
  • ✅ Thiết kế Responsive, dễ dàng tích hợp

Khi nào sử dụng

  • Khi cần màn hình nhập mã PIN hoặc mật khẩu chỉ có số.
  • Các ứng dụng cần bàn phím số lớn (vd: trên máy POS, thiết bị cảm ứng).
  • Tích hợp trong các module quay số (Dialer/VoIP).

Cài đặt

# npm
npm install @libs-ui/components-inputs-keyboard

# yarn
yarn add @libs-ui/components-inputs-keyboard

Import

import { LibsUiComponentsInputsKeyboardComponent } from '@libs-ui/components-inputs-keyboard';

@Component({
  standalone: true,
  imports: [LibsUiComponentsInputsKeyboardComponent],
  // ...
})
export class YourComponent {}

Ví dụ

Cơ bản

<libs_ui-components-inputs-keyboard (outKeyCodeSelected)="onKeySelect($event)" />

API

libs_ui-components-inputs-keyboard

Inputs

Component hiện tại không có inputs công khai.

Outputs

| Property | Type | Description | | ---------------------- | -------- | ------------------------------------------------------------ | | (outKeyCodeSelected) | string | Emit mã code của phím khi người dùng click hoặc nhấn phím số |

Tuyến bố về sự kiện (Events)

Component lắng nghe sự kiện keyup trên toàn bộ document. Khi người dùng nhấn các phím từ 0 đến 9 trên bàn phím cứng, component sẽ tự động cập nhật trạng thái hiển thị và emit event ra ngoài tương tự như khi click chuột vào phím tương ứng trên UI.

Công nghệ

| Technology | Version | Purpose | | --------------- | ------- | ---------------- | | Angular | 18+ | Framework | | Angular Signals | - | State management | | RxJS | 7.x | Event handling | | OnPush | - | Change Detection |

Demo

npx nx serve core-ui

Truy cập: http://localhost:4500/inputs/keyboard

Unit Tests

# Chạy tests
npx nx test components-inputs-keyboard

# Coverage
npx nx test components-inputs-keyboard --coverage

License

MIT