@skyux/forms 13.11.4 → 13.12.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.
@@ -2348,8 +2348,13 @@ class SkyInputBoxComponent {
2348
2348
  #elementRef;
2349
2349
  #renderer;
2350
2350
  /**
2351
- * The maximum number of characters allowed in the input. A [SKY UX character count](https://developer.blackbaud.com/skyux/components/character-count)
2352
- * will be placed on the input element with the appropriate validator.
2351
+ * The maximum number of characters to allow in the input box. This property places a
2352
+ * [SKY UX character count](https://developer.blackbaud.com/skyux/components/character-count)
2353
+ * on the input element with the appropriate validator, so don't use it with inputs where
2354
+ * users are unlikely to exceed character limits. Instead, use
2355
+ * [Angular's max length validator](https://angular.io/api/forms/MaxLengthValidator) and a
2356
+ * `maxLength` attribute on the input element to handle maximum length validation.
2357
+ *
2353
2358
  */
2354
2359
  set characterLimit(value) {
2355
2360
  this.#_characterLimit =