@ni/ok-components 1.6.5 → 1.6.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.
@@ -70393,9 +70393,6 @@ img.ProseMirror-separator {
70393
70393
  --ni-private-switch-indicator-size: 24px;
70394
70394
  --ni-private-switch-indicator-inner-size: 18px;
70395
70395
  --ni-private-switch-indicator-margin: -2px;
70396
- padding-bottom: calc(
70397
- ${controlHeight} - var(--ni-private-switch-height)
70398
- );
70399
70396
  }
70400
70397
 
70401
70398
  :host([disabled]) {
@@ -70420,6 +70417,12 @@ img.ProseMirror-separator {
70420
70417
  .switch-container {
70421
70418
  display: flex;
70422
70419
  align-items: center;
70420
+ ${'' /*
70421
+ Reserve space around the 24px control to fill a 32px height until we have a switch 32 design.
70422
+ See: https://github.com/ni/nimble/issues/3013
70423
+ */}
70424
+ padding-top: 2px;
70425
+ padding-bottom: 6px;
70423
70426
  }
70424
70427
 
70425
70428
  slot[name='unchecked-message']::slotted(*) {
@@ -84299,6 +84302,7 @@ focus outline in that case.
84299
84302
  ?spellcheck="${x => x.spellcheck}"
84300
84303
  :value="${x => x.value}"
84301
84304
  type="${x => x.type}"
84305
+ autocomplete="${x => x.autocomplete}"
84302
84306
  aria-atomic="${x => x.ariaAtomic}"
84303
84307
  aria-busy="${x => x.ariaBusy}"
84304
84308
  aria-controls="${x => x.ariaControls}"
@@ -84347,6 +84351,9 @@ focus outline in that case.
84347
84351
  __decorate([
84348
84352
  attr
84349
84353
  ], TextField.prototype, "appearance", void 0);
84354
+ __decorate([
84355
+ attr
84356
+ ], TextField.prototype, "autocomplete", void 0);
84350
84357
  __decorate([
84351
84358
  attr({ attribute: 'full-bleed', mode: 'boolean' })
84352
84359
  ], TextField.prototype, "fullBleed", void 0);