@ni/nimble-components 18.8.0 → 18.8.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.
- package/dist/all-components-bundle.js +6 -9
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +6 -9
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/table/components/header/styles.js +0 -1
- package/dist/esm/table/components/header/styles.js.map +1 -1
- package/dist/esm/table/components/header/template.js +6 -8
- package/dist/esm/table/components/header/template.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
27697
|
-
|
|
27698
|
-
|
|
27699
|
-
|
|
27700
|
-
|
|
27701
|
-
|
|
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
|
|