@xh/hoist 73.0.0-SNAPSHOT.1738098319236 → 73.0.0-SNAPSHOT.1738169109530
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/admin/jsonsearch/JsonSearchPanel.ts +300 -0
- package/admin/jsonsearch/impl/JsonSearchPanelImplModel.ts +161 -0
- package/admin/tabs/general/config/ConfigPanel.ts +30 -4
- package/admin/tabs/userData/jsonblob/JsonBlobPanel.ts +47 -10
- package/admin/tabs/userData/prefs/UserPreferencePanel.ts +45 -15
- package/build/types/admin/jsonsearch/JsonSearchPanel.d.ts +18 -0
- package/build/types/admin/jsonsearch/impl/JsonSearchPanelImplModel.d.ts +34 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { GridModel } from '@xh/hoist/cmp/grid';
|
|
2
|
+
import { GroupingChooserModel } from '@xh/hoist/cmp/grouping';
|
|
3
|
+
import { HoistModel, TaskObserver } from '@xh/hoist/core';
|
|
4
|
+
/**
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
export declare class JsonSearchPanelImplModel extends HoistModel {
|
|
8
|
+
xhImpl: boolean;
|
|
9
|
+
private matchingNodesUrl;
|
|
10
|
+
gridModel: GridModel;
|
|
11
|
+
groupingChooserModel: GroupingChooserModel;
|
|
12
|
+
docLoadTask: TaskObserver;
|
|
13
|
+
nodeLoadTask: TaskObserver;
|
|
14
|
+
groupBy: string;
|
|
15
|
+
isOpen: boolean;
|
|
16
|
+
error: any;
|
|
17
|
+
path: string;
|
|
18
|
+
readerContentType: 'document' | 'matches';
|
|
19
|
+
pathFormat: 'XPath' | 'JSONPath';
|
|
20
|
+
readerContent: string;
|
|
21
|
+
matchingNodeCount: number;
|
|
22
|
+
get subjectName(): string;
|
|
23
|
+
get docSearchUrl(): string;
|
|
24
|
+
get selectedRecord(): import("../../../data").StoreRecord;
|
|
25
|
+
get gridModelConfig(): any;
|
|
26
|
+
get groupByOptions(): any[];
|
|
27
|
+
toggleSearchIsOpen(): void;
|
|
28
|
+
constructor();
|
|
29
|
+
onLinked(): void;
|
|
30
|
+
loadJsonDocsAsync(): Promise<void>;
|
|
31
|
+
private loadreaderContentAsync;
|
|
32
|
+
private convertToXPath;
|
|
33
|
+
private setGroupBy;
|
|
34
|
+
}
|
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.1738169109530",
|
|
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",
|