@xh/hoist 73.0.0-SNAPSHOT.1746483592964 → 73.0.0-SNAPSHOT.1746540755970
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.
|
@@ -145,6 +145,7 @@ const filterBar = hoistCmp.factory<ActivityTrackingModel>(({model}) => {
|
|
|
145
145
|
});
|
|
146
146
|
|
|
147
147
|
const aggregateView = hoistCmp.factory<ActivityTrackingModel>(({model}) => {
|
|
148
|
+
const {gridModel} = model;
|
|
148
149
|
return panel({
|
|
149
150
|
collapsedTitle: 'Aggregate Activity',
|
|
150
151
|
collapsedIcon: Icon.users(),
|
|
@@ -159,8 +160,8 @@ const aggregateView = hoistCmp.factory<ActivityTrackingModel>(({model}) => {
|
|
|
159
160
|
items: [
|
|
160
161
|
groupingChooser({flex: 10, maxWidth: 300}),
|
|
161
162
|
filler(),
|
|
162
|
-
colChooserButton(),
|
|
163
|
-
exportButton()
|
|
163
|
+
colChooserButton({gridModel}),
|
|
164
|
+
exportButton({gridModel})
|
|
164
165
|
]
|
|
165
166
|
}),
|
|
166
167
|
items: [
|
|
@@ -40,11 +40,11 @@ const tbar = hoistCmp.factory<ActivityDetailModel>(({model}) => {
|
|
|
40
40
|
compact: true,
|
|
41
41
|
items: [
|
|
42
42
|
filler(),
|
|
43
|
-
gridCountLabel({unit: 'entry'}),
|
|
43
|
+
gridCountLabel({gridModel, unit: 'entry'}),
|
|
44
44
|
'-',
|
|
45
45
|
gridFindField({gridModel, key: gridModel.xhId, width: 250}),
|
|
46
46
|
colChooserButton({gridModel}),
|
|
47
|
-
exportButton()
|
|
47
|
+
exportButton({gridModel})
|
|
48
48
|
]
|
|
49
49
|
});
|
|
50
50
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "73.0.0-SNAPSHOT.
|
|
3
|
+
"version": "73.0.0-SNAPSHOT.1746540755970",
|
|
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",
|