@webiny/app-aco 5.38.1 → 5.38.2
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/components/AdvancedSearch/AdvancedSearch.styled.d.ts +2 -0
- package/components/AdvancedSearch/Button/Button.styled.d.ts +2 -0
- package/components/AdvancedSearch/QueryBuilderDrawer/QueryBuilder/Querybuilder.styled.d.ts +1 -0
- package/components/AdvancedSearch/QueryManagerDialog/QueryManagerDialog.styled.d.ts +2 -0
- package/components/AdvancedSearch/SelectedFilter/SelectedFilter.styled.d.ts +2 -0
- package/components/AdvancedSearch/domain/Filter.d.ts +18 -18
- package/components/Dialogs/styled.d.ts +2 -0
- package/components/FolderGrid/styled.d.ts +3 -1
- package/components/FolderTree/ButtonCreate/styled.d.ts +2 -0
- package/components/FolderTree/Empty/styled.d.ts +2 -0
- package/components/FolderTree/Loader/styled.d.ts +2 -0
- package/components/FolderTree/MenuActions/styled.d.ts +2 -0
- package/components/FolderTree/Node/styled.d.ts +2 -0
- package/components/FolderTree/NodePreview/styled.d.ts +2 -0
- package/components/FolderTree/Placeholder/styled.d.ts +2 -0
- package/components/FolderTree/styled.d.ts +2 -0
- package/components/Search/styled.d.ts +2 -0
- package/dialogs/styled.d.ts +2 -0
- package/hooks/useFolders.d.ts +1 -1
- package/package.json +15 -15
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const AdvancedSearchContainer: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
import { Dialog } from "@webiny/ui/Dialog";
|
|
3
5
|
export declare const DialogContainer: import("@emotion/styled").StyledComponent<import("@webiny/ui/Dialog").DialogProps & {
|
|
4
6
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -39,45 +39,45 @@ export declare const filterValidationSchema: zod.ZodObject<{
|
|
|
39
39
|
condition: string;
|
|
40
40
|
}>, "many">;
|
|
41
41
|
}, "strip", zod.ZodTypeAny, {
|
|
42
|
+
operation: Operation;
|
|
42
43
|
filters: {
|
|
43
44
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
44
45
|
field: string;
|
|
45
46
|
condition: string;
|
|
46
47
|
}[];
|
|
47
|
-
operation: Operation;
|
|
48
48
|
}, {
|
|
49
|
+
operation: Operation;
|
|
49
50
|
filters: {
|
|
50
51
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
51
52
|
field: string;
|
|
52
53
|
condition: string;
|
|
53
54
|
}[];
|
|
54
|
-
operation: Operation;
|
|
55
55
|
}>, "many">;
|
|
56
56
|
}, "strip", zod.ZodTypeAny, {
|
|
57
|
+
name: string;
|
|
58
|
+
description: string;
|
|
59
|
+
operation: Operation;
|
|
57
60
|
groups: {
|
|
61
|
+
operation: Operation;
|
|
58
62
|
filters: {
|
|
59
63
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
60
64
|
field: string;
|
|
61
65
|
condition: string;
|
|
62
66
|
}[];
|
|
63
|
-
operation: Operation;
|
|
64
67
|
}[];
|
|
65
|
-
description: string;
|
|
66
|
-
name: string;
|
|
67
|
-
operation: Operation;
|
|
68
68
|
id?: string | null | undefined;
|
|
69
69
|
}, {
|
|
70
|
+
name: string;
|
|
71
|
+
description: string;
|
|
72
|
+
operation: Operation;
|
|
70
73
|
groups: {
|
|
74
|
+
operation: Operation;
|
|
71
75
|
filters: {
|
|
72
76
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
73
77
|
field: string;
|
|
74
78
|
condition: string;
|
|
75
79
|
}[];
|
|
76
|
-
operation: Operation;
|
|
77
80
|
}[];
|
|
78
|
-
description: string;
|
|
79
|
-
name: string;
|
|
80
|
-
operation: Operation;
|
|
81
81
|
id?: string | null | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
export declare class Filter {
|
|
@@ -91,30 +91,30 @@ export declare class Filter {
|
|
|
91
91
|
static createEmpty(): Filter;
|
|
92
92
|
static create(data: FilterDTO): Filter;
|
|
93
93
|
static validate(data: FilterDTO): zod.SafeParseReturnType<{
|
|
94
|
+
name: string;
|
|
95
|
+
description: string;
|
|
96
|
+
operation: Operation;
|
|
94
97
|
groups: {
|
|
98
|
+
operation: Operation;
|
|
95
99
|
filters: {
|
|
96
100
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
97
101
|
field: string;
|
|
98
102
|
condition: string;
|
|
99
103
|
}[];
|
|
100
|
-
operation: Operation;
|
|
101
104
|
}[];
|
|
102
|
-
description: string;
|
|
103
|
-
name: string;
|
|
104
|
-
operation: Operation;
|
|
105
105
|
id?: string | null | undefined;
|
|
106
106
|
}, {
|
|
107
|
+
name: string;
|
|
108
|
+
description: string;
|
|
109
|
+
operation: Operation;
|
|
107
110
|
groups: {
|
|
111
|
+
operation: Operation;
|
|
108
112
|
filters: {
|
|
109
113
|
value: (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]]) & (string | number | boolean | [string | number | boolean, ...(string | number | boolean)[]] | undefined);
|
|
110
114
|
field: string;
|
|
111
115
|
condition: string;
|
|
112
116
|
}[];
|
|
113
|
-
operation: Operation;
|
|
114
117
|
}[];
|
|
115
|
-
description: string;
|
|
116
|
-
name: string;
|
|
117
|
-
operation: Operation;
|
|
118
118
|
id?: string | null | undefined;
|
|
119
119
|
}>;
|
|
120
120
|
protected constructor(data: {
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
import { Dialog } from "@webiny/ui/Dialog";
|
|
3
5
|
export declare const DialogContainer: import("@emotion/styled").StyledComponent<import("@webiny/ui/Dialog").DialogProps & {
|
|
4
6
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
import { Menu } from "@webiny/ui/Menu";
|
|
3
5
|
export declare const FolderContainer: import("@emotion/styled").StyledComponent<{
|
|
4
6
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -31,7 +33,7 @@ export declare const Actions: import("@emotion/styled").StyledComponent<Pick<imp
|
|
|
31
33
|
onOpen?: (() => void) | undefined;
|
|
32
34
|
onClose?: (() => void) | undefined;
|
|
33
35
|
"data-testid"?: string | undefined;
|
|
34
|
-
}, "anchor" | "className" | "
|
|
36
|
+
}, "anchor" | "className" | keyof import("@rmwc/menu").MenuProps | "handle" | "disabled" | "data-testid">> & Partial<Pick<Partial<import("@rmwc/menu").MenuProps & {
|
|
35
37
|
children: import("react").ReactNode;
|
|
36
38
|
handle?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
37
39
|
anchor?: "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "bottomEnd" | "bottomStart" | "topEnd" | "topStart" | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const Button: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const Element: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
export declare const SearchWrapper: import("@emotion/styled").StyledComponent<{
|
|
3
5
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
6
|
as?: import("react").ElementType<any> | undefined;
|
package/dialogs/styled.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="web" />
|
|
2
4
|
import { Dialog } from "@webiny/ui/Dialog";
|
|
3
5
|
export declare const DialogContainer: import("@emotion/styled").StyledComponent<import("@webiny/ui/Dialog").DialogProps & {
|
|
4
6
|
theme?: import("@emotion/react").Theme | undefined;
|
package/hooks/useFolders.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const useFolders: () => {
|
|
2
2
|
getFolder: (id: string) => Promise<import("../types").FolderItem>;
|
|
3
|
-
createFolder: (folder: Omit<import("../types").FolderItem, "
|
|
3
|
+
createFolder: (folder: Omit<import("../types").FolderItem, "id" | "type">) => Promise<import("../types").FolderItem>;
|
|
4
4
|
updateFolder: (folder: Omit<import("../types").FolderItem, "type">, options?: Partial<{
|
|
5
5
|
refetchFoldersList: boolean;
|
|
6
6
|
}> | undefined) => Promise<import("../types").FolderItem>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-aco",
|
|
3
|
-
"version": "5.38.
|
|
3
|
+
"version": "5.38.2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
"@material-design-icons/svg": "0.12.1",
|
|
18
18
|
"@material-symbols/svg-400": "0.4.3",
|
|
19
19
|
"@minoru/react-dnd-treeview": "3.2.1",
|
|
20
|
-
"@webiny/app": "5.38.
|
|
21
|
-
"@webiny/app-admin": "5.38.
|
|
22
|
-
"@webiny/app-headless-cms-common": "5.38.
|
|
23
|
-
"@webiny/app-security": "5.38.
|
|
24
|
-
"@webiny/app-wcp": "5.38.
|
|
25
|
-
"@webiny/form": "5.38.
|
|
26
|
-
"@webiny/plugins": "5.38.
|
|
27
|
-
"@webiny/react-router": "5.38.
|
|
28
|
-
"@webiny/ui": "5.38.
|
|
29
|
-
"@webiny/utils": "5.38.
|
|
30
|
-
"@webiny/validation": "5.38.
|
|
20
|
+
"@webiny/app": "5.38.2",
|
|
21
|
+
"@webiny/app-admin": "5.38.2",
|
|
22
|
+
"@webiny/app-headless-cms-common": "5.38.2",
|
|
23
|
+
"@webiny/app-security": "5.38.2",
|
|
24
|
+
"@webiny/app-wcp": "5.38.2",
|
|
25
|
+
"@webiny/form": "5.38.2",
|
|
26
|
+
"@webiny/plugins": "5.38.2",
|
|
27
|
+
"@webiny/react-router": "5.38.2",
|
|
28
|
+
"@webiny/ui": "5.38.2",
|
|
29
|
+
"@webiny/utils": "5.38.2",
|
|
30
|
+
"@webiny/validation": "5.38.2",
|
|
31
31
|
"dot-prop-immutable": "2.1.1",
|
|
32
32
|
"graphql": "15.8.0",
|
|
33
33
|
"graphql-tag": "2.12.6",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"@babel/preset-typescript": "7.22.5",
|
|
51
51
|
"@babel/runtime": "7.22.6",
|
|
52
52
|
"@types/react": "17.0.39",
|
|
53
|
-
"@webiny/cli": "5.38.
|
|
54
|
-
"@webiny/project-utils": "5.38.
|
|
53
|
+
"@webiny/cli": "5.38.2",
|
|
54
|
+
"@webiny/project-utils": "5.38.2",
|
|
55
55
|
"apollo-client": "2.6.10",
|
|
56
56
|
"apollo-link": "1.2.14",
|
|
57
57
|
"rimraf": "3.0.2",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"build": "yarn webiny run build",
|
|
67
67
|
"watch": "yarn webiny run watch"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "443e107cc474882f558e0783a2d9068b7692bd00"
|
|
70
70
|
}
|