@xh/hoist 59.5.0 → 59.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 59.5.1 - 2024-01-05
4
+
5
+ ### 🐞 Bug Fixes
6
+
7
+ * Fixed `DateEditor` calendar popover not showing for non-pinned columns.
8
+
3
9
  ## 59.5.0 - 2023-12-11
4
10
 
5
11
  ### 🎁 New Features
@@ -91,7 +91,7 @@ function computeStyleInAgGrid(
91
91
 
92
92
  const inputEl = data.instance.reference,
93
93
  leftContainer = inputEl.closest('.ag-pinned-left-cols-container'),
94
- centerContainer = inputEl.closest('.ag-center-cols-clipper'),
94
+ centerContainer = inputEl.closest('.ag-center-cols-container'),
95
95
  rightContainer = inputEl.closest('.ag-pinned-right-cols-container'),
96
96
  rowContainer = centerContainer || leftContainer || rightContainer;
97
97
 
@@ -143,7 +143,7 @@ function computeStyleInAgGrid(
143
143
 
144
144
  // Solve y axis (top). Default position is underneath cell
145
145
  // Flips to above if cell is near bottom of grid.
146
- // If poppper height is greater than grid height, the popper stays in the default position.
146
+ // If popper height is greater than grid height, the popper stays in the default position.
147
147
  const flipToAbove =
148
148
  popperHeight < pcHeight && inputElBottom - scrollTop + popperHeight > pcHeight,
149
149
  trTop = flipToAbove ? inputElTop - popperHeight : inputElBottom;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "59.5.0",
3
+ "version": "59.5.1",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",