@compill/admin 1.0.116 → 1.0.118
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/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from "./lib/json/ScreenRenderer";
|
|
|
10
10
|
export * from "./lib/json/types/DetailsView";
|
|
11
11
|
export * from "./lib/json/types/EditItemDialog";
|
|
12
12
|
export * from "./lib/json/types/MultiQueryWrapper";
|
|
13
|
+
export * from "./lib/json/types/MultiQueryWrapperDialog";
|
|
13
14
|
export * from "./lib/json/types/QueryWrapper";
|
|
14
15
|
export * from "./lib/json/types/QueryWrapperDialog";
|
|
15
16
|
export * from "./lib/json/types/ScreenConfig";
|
|
@@ -3,7 +3,7 @@ import { DetailsViewConfig } from "./DetailsView";
|
|
|
3
3
|
import { TabbedViewConfig } from "./TabbedView";
|
|
4
4
|
import { TableViewConfig } from "./TableView";
|
|
5
5
|
type SubScreen = TableViewConfig | DetailsViewConfig | TabbedViewConfig;
|
|
6
|
-
export type
|
|
6
|
+
export type MultiQueryDef = {
|
|
7
7
|
api: CRUDAPI<any> | ((id: string) => CRUDAPI<any>);
|
|
8
8
|
fn: "get" | "getAll";
|
|
9
9
|
queryField?: string;
|
|
@@ -12,7 +12,7 @@ export type QueryDef = {
|
|
|
12
12
|
};
|
|
13
13
|
export type MultiQueryWrapperConfig = {
|
|
14
14
|
type: "multiQuery";
|
|
15
|
-
queries:
|
|
15
|
+
queries: MultiQueryDef[];
|
|
16
16
|
config: (...data: any[]) => SubScreen;
|
|
17
17
|
};
|
|
18
18
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compill/admin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.118",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,21 +30,21 @@
|
|
|
30
30
|
"react-hotkeys-hook": "^5.0.1",
|
|
31
31
|
"yup": "^1.1.0",
|
|
32
32
|
"@soperio/react": "^1.0.24",
|
|
33
|
-
"@
|
|
33
|
+
"@brikka/layout": "^1.0.96",
|
|
34
34
|
"@compill/admin-api": "^1.0.66",
|
|
35
|
+
"@valerya/ui": "^1.0.27",
|
|
35
36
|
"@soperio/jsx-runtime": "^1.0.24",
|
|
36
|
-
"@brikka/layout": "^1.0.92",
|
|
37
37
|
"@compill/api": "^1.0.69",
|
|
38
|
-
"@compill/components": "^1.0.62",
|
|
39
|
-
"@compill/env": "^1.0.31",
|
|
40
|
-
"@compill/form": "^1.0.88",
|
|
41
38
|
"@compill/auth": "^1.0.96",
|
|
39
|
+
"@compill/env": "^1.0.31",
|
|
42
40
|
"@compill/editor": "^1.0.109",
|
|
43
41
|
"@compill/form-editor": "^1.0.37",
|
|
42
|
+
"@compill/form": "^1.0.88",
|
|
43
|
+
"@compill/components-state": "^1.0.2",
|
|
44
44
|
"@compill/hooks": "^1.0.56",
|
|
45
|
+
"@compill/components": "^1.0.62",
|
|
45
46
|
"@compill/table": "^1.0.91",
|
|
46
|
-
"@compill/form-components": "^1.0.
|
|
47
|
-
"@compill/components-state": "^1.0.0"
|
|
47
|
+
"@compill/form-components": "^1.0.1"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|