odaptos_design_system 2.0.160 → 2.0.161

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,7 @@ interface TextareaProps {
14
14
  onKeyDown?: () => void;
15
15
  id?: string;
16
16
  error?: boolean;
17
- maxCharacters: number;
17
+ maxCharacters?: number;
18
18
  errorText?: string;
19
19
  helperText?: string;
20
20
  disabled?: boolean;
@@ -16765,7 +16765,7 @@ const Textarea = ({
16765
16765
  onBlur,
16766
16766
  placeholder,
16767
16767
  value,
16768
- maxCharacters,
16768
+ maxCharacters = 500,
16769
16769
  topLabel,
16770
16770
  topLabelWeight,
16771
16771
  topLabelSize,