@ni/spright-components 6.21.5 → 6.21.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.
@@ -70385,9 +70385,6 @@ img.ProseMirror-separator {
70385
70385
  --ni-private-switch-indicator-size: 24px;
70386
70386
  --ni-private-switch-indicator-inner-size: 18px;
70387
70387
  --ni-private-switch-indicator-margin: -2px;
70388
- padding-bottom: calc(
70389
- ${controlHeight} - var(--ni-private-switch-height)
70390
- );
70391
70388
  }
70392
70389
 
70393
70390
  :host([disabled]) {
@@ -70412,6 +70409,12 @@ img.ProseMirror-separator {
70412
70409
  .switch-container {
70413
70410
  display: flex;
70414
70411
  align-items: center;
70412
+ ${'' /*
70413
+ Reserve space around the 24px control to fill a 32px height until we have a switch 32 design.
70414
+ See: https://github.com/ni/nimble/issues/3013
70415
+ */}
70416
+ padding-top: 2px;
70417
+ padding-bottom: 6px;
70415
70418
  }
70416
70419
 
70417
70420
  slot[name='unchecked-message']::slotted(*) {
@@ -84291,6 +84294,7 @@ focus outline in that case.
84291
84294
  ?spellcheck="${x => x.spellcheck}"
84292
84295
  :value="${x => x.value}"
84293
84296
  type="${x => x.type}"
84297
+ autocomplete="${x => x.autocomplete}"
84294
84298
  aria-atomic="${x => x.ariaAtomic}"
84295
84299
  aria-busy="${x => x.ariaBusy}"
84296
84300
  aria-controls="${x => x.ariaControls}"
@@ -84339,6 +84343,9 @@ focus outline in that case.
84339
84343
  __decorate([
84340
84344
  attr
84341
84345
  ], TextField.prototype, "appearance", void 0);
84346
+ __decorate([
84347
+ attr
84348
+ ], TextField.prototype, "autocomplete", void 0);
84342
84349
  __decorate([
84343
84350
  attr({ attribute: 'full-bleed', mode: 'boolean' })
84344
84351
  ], TextField.prototype, "fullBleed", void 0);