diff --git a/src/formio/components/textarea.ts b/src/formio/components/textarea.ts index 3c795e9..4cab191 100644 --- a/src/formio/components/textarea.ts +++ b/src/formio/components/textarea.ts @@ -1,7 +1,7 @@ import {InputComponentSchema, MultipleCapable} from '..'; type Validator = 'required' | 'maxLength' | 'pattern'; -type TranslatableKeys = 'label' | 'description' | 'tooltip' | 'defaultValue' | 'placeholder'; +type TranslatableKeys = 'label' | 'description' | 'tooltip' | 'placeholder'; export type TextareaInputSchema = InputComponentSchema; diff --git a/src/formio/components/textfield.ts b/src/formio/components/textfield.ts index 3af21bc..e27600e 100644 --- a/src/formio/components/textfield.ts +++ b/src/formio/components/textfield.ts @@ -1,7 +1,7 @@ import {InputComponentSchema, MultipleCapable, PrefillConfig} from '..'; type Validator = 'required' | 'maxLength' | 'pattern'; -type TranslatableKeys = 'label' | 'description' | 'tooltip' | 'defaultValue' | 'placeholder'; +type TranslatableKeys = 'label' | 'description' | 'tooltip' | 'placeholder'; export type TextFieldInputSchema = InputComponentSchema;