@muraldevkit/ui-toolkit 2.28.0 → 2.29.0

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.
@@ -13,6 +13,11 @@ interface MrlTextInputProps {
13
13
  inputId: string;
14
14
  /** The value of the text input used to make it a controlled input */
15
15
  value?: string;
16
+ /**
17
+ * The maximum number of characters that the user can enter.
18
+ * If undefined or set to "0", removes the character counter from the textarea
19
+ */
20
+ maxLength?: number;
16
21
  /** Text placeholder for the text input */
17
22
  placeholder?: string;
18
23
  /**