👨💻 [maxlength hard ec] - NazimMertBilgi/nmb-empty-control GitHub Wiki
This property allows you to define the maximum number of characters in a field (input,textarea). [maxlength-hard-ec] differs from [maxlength-ec] to exclude the number of characters specified.
maxlength-hard-ec="number"
Example
<input type="text" required-ec="warning" maxlength-hard-ec="50" />
With this attribute, it will not go beyond the specified value. ( Note: just in case, it is recommended to take the necessary precautions on the backend side. )