@ni/nimble-components 18.13.3 → 18.13.4
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 -2
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +5 -1
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/table/components/header/template.js +5 -1
- package/dist/esm/table/components/header/template.js.map +1 -1
- package/package.json +1 -1
|
@@ -16366,7 +16366,7 @@
|
|
|
16366
16366
|
|
|
16367
16367
|
/**
|
|
16368
16368
|
* Do not edit directly
|
|
16369
|
-
* Generated on
|
|
16369
|
+
* Generated on Mon, 08 May 2023 13:48:08 GMT
|
|
16370
16370
|
*/
|
|
16371
16371
|
const Information100DarkUi = "#a46eff";
|
|
16372
16372
|
const Information100LightUi = "#804ad9";
|
|
@@ -28376,7 +28376,11 @@
|
|
|
28376
28376
|
|
|
28377
28377
|
// prettier-ignore
|
|
28378
28378
|
const template$d = html `
|
|
28379
|
-
<template role="columnheader"
|
|
28379
|
+
<template role="columnheader"
|
|
28380
|
+
aria-sort="${x => x.ariaSort}"
|
|
28381
|
+
${'' /* Prevent header double clicks from selecting text */}
|
|
28382
|
+
@mousedown="${(_x, c) => !(c.event.detail > 1)}"
|
|
28383
|
+
>
|
|
28380
28384
|
<slot></slot>
|
|
28381
28385
|
|
|
28382
28386
|
${when(x => x.sortDirection === TableColumnSortDirection.ascending, html `
|