@trussworks/react-uswds
Advanced tools
Comparing version 5.3.0 to 5.3.1
@@ -5,2 +5,9 @@ # Changelog | ||
## [5.3.1](https://github.com/trussworks/react-uswds/compare/5.3.0...5.3.1) (2023-09-08) | ||
### Bug Fixes | ||
* text input mask fixes ([#2581](https://github.com/trussworks/react-uswds/issues/2581)) ([84cf4d0](https://github.com/trussworks/react-uswds/commit/84cf4d0e03dc65521a463a6c7326740a5509ba8b)) | ||
## [5.3.0](https://github.com/trussworks/react-uswds/compare/5.2.0...5.3.0) (2023-08-29) | ||
@@ -7,0 +14,0 @@ |
import React from 'react'; | ||
import { TextInputProps } from '../TextInput/TextInput'; | ||
declare type MaskProps = { | ||
export declare type AllProps = TextInputProps & { | ||
mask: string; | ||
charset?: string; | ||
}; | ||
export declare type AllProps = TextInputProps & MaskProps; | ||
export declare const TextInputMask: ({ id, name, type, className, validationStatus, inputSize, inputRef, mask, charset, ...inputProps }: AllProps) => React.ReactElement; | ||
export declare const TextInputMask: ({ id, className, mask, value: externalValue, defaultValue, charset, onChange, ...inputProps }: AllProps) => React.ReactElement; | ||
export default TextInputMask; |
{ | ||
"name": "@trussworks/react-uswds", | ||
"version": "5.3.0", | ||
"version": "5.3.1", | ||
"description": "React USWDS 3.0 component library", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2066193
6455