@ni/nimble-components 18.8.0 → 18.8.2

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.
@@ -27684,7 +27684,6 @@
27684
27684
 
27685
27685
  .sort-indicator {
27686
27686
  padding: 0px calc(${standardPadding} / 2);
27687
- width: ${standardPadding};
27688
27687
  }
27689
27688
  `;
27690
27689
 
@@ -27693,14 +27692,12 @@
27693
27692
  <template role="columnheader" aria-sort="${x => x.ariaSort}">
27694
27693
  <slot></slot>
27695
27694
 
27696
- <span class="sort-indicator" aria-hidden="true">
27697
- ${when(x => x.sortDirection === TableColumnSortDirection.ascending, html `
27698
- <${iconArrowUpTag}></${iconArrowUpTag}>
27699
- `)}
27700
- ${when(x => x.sortDirection === TableColumnSortDirection.descending, html `
27701
- <${iconArrowDownTag}></${iconArrowDownTag}>
27702
- `)}
27703
- </span>
27695
+ ${when(x => x.sortDirection === TableColumnSortDirection.ascending, html `
27696
+ <${iconArrowUpTag} class="sort-indicator" aria-hidden="true"></${iconArrowUpTag}>
27697
+ `)}
27698
+ ${when(x => x.sortDirection === TableColumnSortDirection.descending, html `
27699
+ <${iconArrowDownTag} class="sort-indicator" aria-hidden="true"></${iconArrowDownTag}>
27700
+ `)}
27704
27701
  </template>
27705
27702
  `;
27706
27703