@xh/hoist 73.0.0-SNAPSHOT.1746560538636 → 73.0.0-SNAPSHOT.1746560992436

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.
@@ -241,6 +241,8 @@ export const instance: ColumnSpec = {
241
241
  isDimension: true,
242
242
  aggregator: 'UNIQUE'
243
243
  },
244
+ chooserDescription:
245
+ 'The unique ID of the back-end Hoist cluster member instance to which the client app is connected.',
244
246
  chooserGroup: 'Session IDs',
245
247
  renderer: badgeRenderer,
246
248
  width: 100
@@ -251,6 +253,8 @@ export const loadId: ColumnSpec = {
251
253
  name: 'loadId',
252
254
  type: 'string'
253
255
  },
256
+ chooserDescription:
257
+ 'A unique ID assigned to each load/init of the application. Refreshing the tab within your browser will result in a new Load ID.',
254
258
  chooserGroup: 'Session IDs',
255
259
  ...badgeCol
256
260
  };
@@ -312,6 +316,8 @@ export const tabId: ColumnSpec = {
312
316
  name: 'tabId',
313
317
  type: 'string'
314
318
  },
319
+ chooserDescription:
320
+ 'A new Tab ID is established within browser session storage and maintained for the lifetime of the tab. Refreshing the app within your browser will maintain the existing Tab ID',
315
321
  chooserGroup: 'Session IDs',
316
322
  ...badgeCol
317
323
  };
@@ -417,8 +417,8 @@ export class ActivityTrackingModel extends HoistModel implements ActivityDetailP
417
417
  persistWith: {...this.persistWith, path: 'aggGrid'},
418
418
  selModel: 'multiple',
419
419
  enableExport: true,
420
- colChooserModel: true,
421
420
  treeMode: true,
421
+ colChooserModel: {height: 450},
422
422
  treeStyle: TreeStyle.HIGHLIGHTS_AND_BORDERS,
423
423
  autosizeOptions: {mode: 'managed', includeCollapsedChildren: true},
424
424
  exportOptions: {filename: exportFilename('activity-summary')},
@@ -158,7 +158,7 @@ export class ActivityDetailModel extends HoistModel {
158
158
  return new GridModel({
159
159
  persistWith: persistWith ? {...persistWith, path: `${persistWith.path}.grid`} : null,
160
160
  sortBy: 'dateCreated|desc',
161
- colChooserModel: true,
161
+ colChooserModel: {height: 450},
162
162
  enableExport: true,
163
163
  filterModel: false,
164
164
  exportOptions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1746560538636",
3
+ "version": "73.0.0-SNAPSHOT.1746560992436",
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",