fix(TextFieldProps): Add "disabled" option to TextFieldProps (#14)

This commit is contained in:
Lukas Senionis
2022-08-18 17:58:35 +03:00
committed by GitHub
parent d18b1ba1ed
commit af98a76b86

View File

@@ -6,6 +6,7 @@ export interface TextFieldProps {
label?: ReactNode;
requiredLabel?: ReactNode;
description?: ReactNode;
disabled?: boolean;
bShowCopyAction?: boolean;
bShowClearAction?: boolean;
bAlwaysShowClearAction?: boolean;