@compill/admin 1.0.118 → 1.0.119
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.
|
@@ -8,6 +8,7 @@ import { QueryWrapperDialogConfig } from "./QueryWrapperDialog";
|
|
|
8
8
|
import * as Yup from "yup";
|
|
9
9
|
import { MutationQueryFn, MutationQueryKey } from "@compill/api";
|
|
10
10
|
import { ItemDeleteDialogProps } from "@compill/form-components";
|
|
11
|
+
import { MultiQueryWrapperDialogConfig } from "./MultiQueryWrapperDialog";
|
|
11
12
|
export type TableViewScreen = {
|
|
12
13
|
api: API<any>;
|
|
13
14
|
breadcrumbs?: Breadcrumb[] | QueryBreadcrumbs;
|
|
@@ -32,7 +33,7 @@ export type CustomDialog = {
|
|
|
32
33
|
type: "customDialog";
|
|
33
34
|
render: (props: ModalProps) => React.ReactNode;
|
|
34
35
|
};
|
|
35
|
-
export type TableViewEditView = CustomDialog | EditItemDialogConfig | QueryWrapperDialogConfig<any
|
|
36
|
+
export type TableViewEditView = CustomDialog | EditItemDialogConfig | QueryWrapperDialogConfig<any> | MultiQueryWrapperDialogConfig;
|
|
36
37
|
export type TableViewTable = Omit<TableProps, "onRowClick" | "queryKey" | "queryFn" | "queryFilters"> & {
|
|
37
38
|
filtersMethod?: "internal" | "nextRouter" | "reactRouter";
|
|
38
39
|
initialVisibleColumns?: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compill/admin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.119",
|
|
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
|
-
"@brikka/layout": "^1.0.96",
|
|
34
|
-
"@compill/admin-api": "^1.0.66",
|
|
35
33
|
"@valerya/ui": "^1.0.27",
|
|
36
34
|
"@soperio/jsx-runtime": "^1.0.24",
|
|
35
|
+
"@compill/admin-api": "^1.0.66",
|
|
36
|
+
"@brikka/layout": "^1.0.96",
|
|
37
37
|
"@compill/api": "^1.0.69",
|
|
38
|
-
"@compill/
|
|
39
|
-
"@compill/
|
|
38
|
+
"@compill/components": "^1.0.62",
|
|
39
|
+
"@compill/components-state": "^1.0.2",
|
|
40
40
|
"@compill/editor": "^1.0.109",
|
|
41
|
-
"@compill/
|
|
41
|
+
"@compill/auth": "^1.0.96",
|
|
42
42
|
"@compill/form": "^1.0.88",
|
|
43
|
-
"@compill/components
|
|
43
|
+
"@compill/form-components": "^1.0.1",
|
|
44
44
|
"@compill/hooks": "^1.0.56",
|
|
45
|
-
"@compill/components": "^1.0.62",
|
|
46
45
|
"@compill/table": "^1.0.91",
|
|
47
|
-
"@compill/
|
|
46
|
+
"@compill/env": "^1.0.31",
|
|
47
|
+
"@compill/form-editor": "^1.0.37"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|