@xh/hoist 76.0.0-SNAPSHOT.1757274887417 → 76.0.0-SNAPSHOT.1757428490497

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
@@ -40,6 +40,10 @@
40
40
  * Added control to trigger browser GC from app footer. Useful for troubleshooting memory issues.
41
41
  Requires running chromium-based browser via e.g. `start chrome --js-flags="--expose-gc`.
42
42
 
43
+ ### ⚙️ Typescript API Adjustments
44
+
45
+ * Corrected `ColChooserConfig` `width` and `height` types.
46
+
43
47
  ## 75.0.1 - 2025-08-11
44
48
 
45
49
  ### 🎁 New Features
@@ -99,9 +99,9 @@ export interface ColChooserConfig {
99
99
  */
100
100
  autosizeOnCommit?: boolean;
101
101
  /** Chooser width for popover and dialog. Desktop only. */
102
- width?: number;
102
+ width?: string | number;
103
103
  /** Chooser height for popover and dialog. Desktop only. */
104
- height?: number;
104
+ height?: string | number;
105
105
  }
106
106
  /**
107
107
  * Sort comparator function for a grid column. Note that this comparator will also be called if
package/cmp/grid/Types.ts CHANGED
@@ -136,10 +136,10 @@ export interface ColChooserConfig {
136
136
  autosizeOnCommit?: boolean;
137
137
 
138
138
  /** Chooser width for popover and dialog. Desktop only. */
139
- width?: number;
139
+ width?: string | number;
140
140
 
141
141
  /** Chooser height for popover and dialog. Desktop only. */
142
- height?: number;
142
+ height?: string | number;
143
143
  }
144
144
 
145
145
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "76.0.0-SNAPSHOT.1757274887417",
3
+ "version": "76.0.0-SNAPSHOT.1757428490497",
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",