A TypeScript library providing specialized input handling and formatting for various data types.
TS-Inputs is a modular library that provides specialized input handling, formatting, and validation for different types of data. It's designed to be used in web applications where precise input control and formatting are required.
- Credit Card Input: Formatting and validation for credit card numbers
- Date Input: Specialized date input handling
- Time Input: Time format handling
- Numeral Input: Number formatting and validation
- General Input: Common input handling utilities
- Cursor Tracker: Input cursor position tracking
src/
├── common/ # Shared utilities and types
│ ├── types.ts # Common type definitions
│ └── utils.ts # Shared utility functions
├── credit-card/ # Credit card input handling
├── cursor-tracker/ # Cursor position tracking
├── date/ # Date input handling
├── general/ # General input utilities
├── numeral/ # Number formatting
└── time/ # Time input handling
The library provides several common utilities and types:
RequireExactlyOne
: Type utility for requiring exactly one property from a setDelimiterType
: Type definition for input delimitersBlocksType
: Type for input block definitions- Various interfaces for input formatting and delimiter handling
import { creditCard, date, numeral, time } from 'ts-inputs'
// Example usage with credit card input
const formattedCard = creditCard.format('4111111111111111')
// Result: '4111 1111 1111 1111'
npm install ts-inputs
# or
yarn add ts-inputs
Contributions are welcome! Please feel free to submit a Pull Request.
bun test
Please see our releases page for more information on what has changed recently.
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
For casual chit-chat with others using this package:
Join the Stacks Discord Server
"Software that is free, but hopes for a postcard." We love receiving postcards from around the world showing where Stacks is being used! We showcase them on our website too.
Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States 🌎
We would like to extend our thanks to the following sponsors for funding Stacks development. If you are interested in becoming a sponsor, please reach out to us.
The MIT License (MIT). Please see LICENSE for more information.
Made with 💙