@ni/spright-components 5.5.0 → 5.5.1

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.
@@ -93576,6 +93576,7 @@ focus outline in that case.
93576
93576
  ${ref('textArea')}
93577
93577
  placeholder="${x => x.placeholder}"
93578
93578
  rows="1"
93579
+ tabindex="${x => x.tabIndex}"
93579
93580
  @keydown="${(x, c) => x.textAreaKeydownHandler(c.event)}"
93580
93581
  @input="${x => x.textAreaInputHandler()}"
93581
93582
  ></textarea>
@@ -93585,6 +93586,7 @@ focus outline in that case.
93585
93586
  appearance-variant="accent"
93586
93587
  ?disabled=${x => x.disableSendButton}
93587
93588
  @click=${x => x.sendButtonClickHandler()}
93589
+ tabindex="${x => x.tabIndex}"
93588
93590
  title=${x => x.sendButtonLabel}
93589
93591
  content-hidden
93590
93592
  >
@@ -93676,6 +93678,9 @@ focus outline in that case.
93676
93678
  __decorate([
93677
93679
  attr
93678
93680
  ], ChatInput.prototype, "value", void 0);
93681
+ __decorate([
93682
+ attr({ attribute: 'tabindex', converter: nullableNumberConverter })
93683
+ ], ChatInput.prototype, "tabIndex", void 0);
93679
93684
  __decorate([
93680
93685
  observable
93681
93686
  ], ChatInput.prototype, "textArea", void 0);
@@ -93685,7 +93690,10 @@ focus outline in that case.
93685
93690
  const sprightChatInput = ChatInput.compose({
93686
93691
  baseName: 'chat-input',
93687
93692
  template: template$2,
93688
- styles: styles$2
93693
+ styles: styles$2,
93694
+ shadowOptions: {
93695
+ delegatesFocus: true
93696
+ }
93689
93697
  });
93690
93698
  DesignSystem.getOrCreate().withPrefix('spright').register(sprightChatInput());
93691
93699