UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

17 lines (15 loc) 369 B
/** * * This module contains common options and types of components that use KeyFilter. * * @module keyfilter * */ /** * Defines the type of keyfilter property in components. * * @see {@link inputtext} * @see {@link password} * ... */ export type KeyFilterType = 'pint' | 'int' | 'pnum' | 'money' | 'num' | 'hex' | 'email' | 'alpha' | 'alphanum' | RegExp;