@xh/hoist 67.0.0-SNAPSHOT.1723841759825 → 67.0.0-SNAPSHOT.1724286422850

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
@@ -21,6 +21,7 @@
21
21
  * New property `FetchOptions.asJson` to instruct `FetchService` to decode an HTTP response as JSON.
22
22
  Note that `FetchService` methods suffixed with `Json` will set this property automatically.
23
23
  * `GridModel` will now accept `contextMenu: false` to omit context menus.
24
+ * Swapped locations of `primaryOnly` and `active` sliders in `MonitorEditorDialog`.
24
25
 
25
26
  ### 🐞 Bug Fixes
26
27
 
@@ -88,14 +88,14 @@ const modelSpec: RestGridConfig = {
88
88
  editors: [
89
89
  {field: 'code'},
90
90
  {field: 'name'},
91
- {field: 'primaryOnly'},
91
+ {field: 'active'},
92
92
  {field: 'metricType'},
93
93
  {field: 'warnThreshold'},
94
94
  {field: 'failThreshold'},
95
95
  {field: 'metricUnit'},
96
96
  {field: 'params'},
97
97
  {field: 'notes', formField: {item: textArea()}},
98
- {field: 'active'},
98
+ {field: 'primaryOnly'},
99
99
  {field: 'sortOrder'},
100
100
  {field: 'lastUpdated'},
101
101
  {field: 'lastUpdatedBy'}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "67.0.0-SNAPSHOT.1723841759825",
3
+ "version": "67.0.0-SNAPSHOT.1724286422850",
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",