gramene-search 2.13.4 → 2.13.5
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/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17004,7 +17004,8 @@ const $8f8e530286a37ce9$var$chipRenderer = (dir)=>({ value: value })=>{
|
|
|
17004
17004
|
// legible without widening the heatmap. Clicking still sorts the column, and a
|
|
17005
17005
|
// rotated sort arrow is drawn before the label (the default ag-grid sort UI is
|
|
17006
17006
|
// replaced by this custom header, so we render our own indicator). The arrow
|
|
17007
|
-
// sits in the rotated span, so
|
|
17007
|
+
// sits in the -90°-rotated span, so a → (asc) renders pointing up and a
|
|
17008
|
+
// ← (desc) pointing down.
|
|
17008
17009
|
const $8f8e530286a37ce9$var$RotatedHeader = (props)=>{
|
|
17009
17010
|
const [sort, setSort] = (0, $gXNCa$react.useState)(props.column.getSort ? props.column.getSort() : null);
|
|
17010
17011
|
(0, $gXNCa$react.useEffect)(()=>{
|
|
@@ -17017,7 +17018,7 @@ const $8f8e530286a37ce9$var$RotatedHeader = (props)=>{
|
|
|
17017
17018
|
props.column
|
|
17018
17019
|
]);
|
|
17019
17020
|
const onClick = (e)=>props.progressSort && props.progressSort(e.shiftKey);
|
|
17020
|
-
const arrow = sort === 'asc' ? "\
|
|
17021
|
+
const arrow = sort === 'asc' ? "\u2192\u2009" : sort === 'desc' ? "\u2190\u2009" : '';
|
|
17021
17022
|
return /*#__PURE__*/ (0, $gXNCa$reactjsxruntime.jsx)("div", {
|
|
17022
17023
|
className: "attrtable-rot-header",
|
|
17023
17024
|
title: props.displayName,
|