@nocobase/client 1.3.41-beta → 1.3.43-beta

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/es/pm/style.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
10
10
  cardActionDisabled: {
11
11
  color: string;
12
- cursor: string;
12
+ cursor: "not-allowed";
13
13
  };
14
14
  pageHeader: {
15
15
  backgroundColor: string;
@@ -30,15 +30,15 @@ export declare const useStyles: (props?: unknown) => import("antd-style").Return
30
30
  margin: number;
31
31
  };
32
32
  PluginDetailBaseInfo: {
33
- display: string;
34
- flexDirection: string;
33
+ display: "flex";
34
+ flexDirection: "column";
35
35
  marginBottom: number;
36
36
  };
37
37
  PluginDocument: {
38
38
  background: string;
39
39
  padding: number;
40
40
  height: string;
41
- overflowY: string;
41
+ overflowY: "auto";
42
42
  };
43
43
  avatar: {
44
44
  '.ant-card-meta-avatar': {
@@ -49,9 +49,9 @@ export declare const useStyles: (props?: unknown) => import("antd-style").Return
49
49
  };
50
50
  };
51
51
  version: {
52
- display: string;
52
+ display: "block";
53
53
  color: string;
54
- fontWeight: string;
54
+ fontWeight: "normal";
55
55
  fontSize: number;
56
56
  };
57
57
  }>;
@@ -7,6 +7,7 @@
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
9
  export * from './Action';
10
+ export * from './Action.Designer';
10
11
  export * from './ActionBar';
11
12
  export * from './context';
12
13
  export * from './hooks';
@@ -14,5 +15,5 @@ export * from './hooks/useGetAriaLabelOfAction';
14
15
  export * from './hooks/useGetAriaLabelOfDrawer';
15
16
  export * from './hooks/useGetAriaLabelOfModal';
16
17
  export * from './hooks/useGetAriaLabelOfPopover';
17
- export * from './Action.Designer';
18
18
  export * from './types';
19
+ export * from './zIndexContext';
@@ -9,11 +9,11 @@
9
9
  export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
10
10
  nbMenuItemGroup: {
11
11
  maxHeight: string;
12
- overflowY: string;
12
+ overflowY: "auto";
13
13
  };
14
14
  nbMenuItemSubMenu: {
15
15
  maxHeight: string;
16
- overflowY: string;
16
+ overflowY: "auto";
17
17
  boxShadow: string;
18
18
  borderRadius: number;
19
19
  };
@@ -6,12 +6,14 @@
6
6
  * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
+ import { Form } from '@formily/core';
9
10
  import { LinkageRuleCategory } from './type';
10
- export declare function useSatisfiedActionValues({ formValues, category, rules, schema, }: {
11
+ export declare function useSatisfiedActionValues({ formValues, category, rules, schema, form, }: {
11
12
  category: `${LinkageRuleCategory}`;
12
13
  formValues: Record<string, any>;
13
14
  rules?: any;
14
15
  schema?: any;
16
+ form?: Form;
15
17
  }): {
16
18
  valueMap: {};
17
19
  };
@@ -8,23 +8,23 @@
8
8
  */
9
9
  export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
10
10
  toolbar: {
11
- position: string;
11
+ position: "absolute";
12
12
  zIndex: number;
13
- display: string;
13
+ display: "none";
14
14
  top: number;
15
15
  left: number;
16
16
  right: number;
17
17
  bottom: number;
18
18
  border: string;
19
19
  background: string;
20
- pointerEvents: string;
20
+ pointerEvents: "none";
21
21
  '.ant-space-item .anticon': {
22
22
  margin: number;
23
23
  };
24
24
  };
25
25
  toolbarTitle: {
26
- pointerEvents: string;
27
- position: string;
26
+ pointerEvents: "none";
27
+ position: "absolute";
28
28
  fontSize: number;
29
29
  padding: number;
30
30
  lineHeight: string;
@@ -38,22 +38,22 @@ export declare const useStyles: (props?: unknown) => import("antd-style").Return
38
38
  padding: string;
39
39
  borderRadius: number;
40
40
  background: string;
41
- color: string;
42
- display: string;
41
+ color: "#fff";
42
+ display: "block";
43
43
  };
44
44
  toolbarIcons: {
45
- position: string;
45
+ position: "absolute";
46
46
  right: string;
47
47
  top: string;
48
48
  lineHeight: string;
49
- pointerEvents: string;
49
+ pointerEvents: "all";
50
50
  '.ant-space-item': {
51
- backgroundColor: string;
52
- color: string;
51
+ backgroundColor: "var(--colorSettings)";
52
+ color: "#fff";
53
53
  lineHeight: string;
54
54
  width: string;
55
55
  paddingLeft: string;
56
- alignSelf: string;
56
+ alignSelf: "stretch";
57
57
  };
58
58
  };
59
59
  }>;