@ni/ok-components 0.2.6 → 0.2.7

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.
@@ -96950,6 +96950,7 @@ focus outline in that case.
96950
96950
  placeholder="${x => x.placeholder}"
96951
96951
  rows="1"
96952
96952
  tabindex="${x => x.tabIndex}"
96953
+ maxlength="${x => x.maxLength}"
96953
96954
  @keydown="${(x, c) => x.textAreaKeydownHandler(c.event)}"
96954
96955
  @input="${x => x.textAreaInputHandler()}"
96955
96956
  ></textarea>
@@ -96975,6 +96976,7 @@ focus outline in that case.
96975
96976
  constructor() {
96976
96977
  super(...arguments);
96977
96978
  this.value = '';
96979
+ this.maxLength = -1;
96978
96980
  /**
96979
96981
  * @internal
96980
96982
  */
@@ -97051,6 +97053,9 @@ focus outline in that case.
97051
97053
  __decorate([
97052
97054
  attr({ attribute: 'tabindex', converter: nullableNumberConverter })
97053
97055
  ], ChatInput.prototype, "tabIndex", void 0);
97056
+ __decorate([
97057
+ attr({ attribute: 'maxlength', converter: nullableNumberConverter })
97058
+ ], ChatInput.prototype, "maxLength", void 0);
97054
97059
  __decorate([
97055
97060
  observable
97056
97061
  ], ChatInput.prototype, "textArea", void 0);