@xh/hoist 73.0.0-SNAPSHOT.1738073819234 → 73.0.0-SNAPSHOT.1738098086901

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.
@@ -34,7 +34,7 @@ export interface JsonSearchPanelProps extends HoistProps {
34
34
  /**
35
35
  * Names of field(s) that can be used to group by.
36
36
  */
37
- groupByOptions: SelectOption[];
37
+ groupByOptions: Array<SelectOption | any>;
38
38
  }
39
39
 
40
40
  export const [JsonSearchPanel, jsonSearchPanel] = hoistCmp.withFactory<JsonSearchPanelProps>({
@@ -10,10 +10,7 @@ import * as AdminCol from '@xh/hoist/admin/columns';
10
10
  import {hframe} from '@xh/hoist/cmp/layout';
11
11
  import {creates, hoistCmp} from '@xh/hoist/core';
12
12
  import {button} from '@xh/hoist/desktop/cmp/button';
13
- import {
14
- jsonSearchPanel,
15
- type JsonSearchPanelProps
16
- } from '@xh/hoist/admin/jsonsearch/JsonSearchPanel';
13
+ import {jsonSearchPanel} from '@xh/hoist/admin/jsonsearch/JsonSearchPanel';
17
14
  import {panel} from '@xh/hoist/desktop/cmp/panel';
18
15
  import {restGrid} from '@xh/hoist/desktop/cmp/rest';
19
16
  import {Icon} from '@xh/hoist/icon';
@@ -67,7 +64,7 @@ export const jsonBlobPanel = hoistCmp.factory({
67
64
  ]
68
65
  },
69
66
  groupByOptions: ['owner', 'type', 'name']
70
- } as JsonSearchPanelProps),
67
+ }),
71
68
  differ({omit: !model.differModel})
72
69
  );
73
70
  }
@@ -4,6 +4,7 @@
4
4
  *
5
5
  * Copyright © 2025 Extremely Heavy Industries Inc.
6
6
  */
7
+
7
8
  import * as Col from '@xh/hoist/admin/columns/Rest';
8
9
  import * as AdminCol from '@xh/hoist/admin/columns';
9
10
  import {prefEditorDialog} from '@xh/hoist/admin/tabs/userData/prefs/editor/PrefEditorDialog';
@@ -11,10 +12,7 @@ import {UserPreferenceModel} from '@xh/hoist/admin/tabs/userData/prefs/UserPrefe
11
12
  import {hframe} from '@xh/hoist/cmp/layout';
12
13
  import {creates, hoistCmp} from '@xh/hoist/core';
13
14
  import {button} from '@xh/hoist/desktop/cmp/button';
14
- import {
15
- jsonSearchPanel,
16
- type JsonSearchPanelProps
17
- } from '@xh/hoist/admin/jsonsearch/JsonSearchPanel';
15
+ import {jsonSearchPanel} from '@xh/hoist/admin/jsonsearch/JsonSearchPanel';
18
16
  import {panel} from '@xh/hoist/desktop/cmp/panel';
19
17
  import {restGrid} from '@xh/hoist/desktop/cmp/rest';
20
18
  import {Icon} from '@xh/hoist/icon';
@@ -59,7 +57,7 @@ export const userPreferencePanel = hoistCmp.factory({
59
57
  ]
60
58
  },
61
59
  groupByOptions: ['owner', 'groupName', 'name']
62
- } as JsonSearchPanelProps)
60
+ })
63
61
  );
64
62
  }
65
63
  });
@@ -13,6 +13,6 @@ export interface JsonSearchPanelProps extends HoistProps {
13
13
  /**
14
14
  * Names of field(s) that can be used to group by.
15
15
  */
16
- groupByOptions: SelectOption[];
16
+ groupByOptions: Array<SelectOption | any>;
17
17
  }
18
18
  export declare const JsonSearchPanel: import("react").FC<JsonSearchPanelProps>, jsonSearchPanel: import("@xh/hoist/core").ElementFactory<JsonSearchPanelProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1738073819234",
3
+ "version": "73.0.0-SNAPSHOT.1738098086901",
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",