From 8a9e2d6287e5fdcf24f66e50d05c7d1f6f19b753 Mon Sep 17 00:00:00 2001 From: Sudhanshu Date: Sun, 25 Aug 2024 23:09:50 +0530 Subject: [PATCH] - Remove isCharacterSame as valid prop from NumericFormat and PatternFormat as its a number_format base props and shouldn't be used outside. #850 --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index d47d8539..fc9ff070 100644 --- a/src/types.ts +++ b/src/types.ts @@ -95,7 +95,7 @@ export type NumberFormatBaseProps = NumberFormatProp export type InternalNumberFormatBase = Omit< NumberFormatBase, - 'format' | 'removeFormatting' | 'getCaretBoundary' | 'isValidInputCharacter' + 'format' | 'removeFormatting' | 'getCaretBoundary' | 'isValidInputCharacter' | 'isCharacterSame' >; export type NumericFormatProps = NumberFormatProps<