@steedos-widgets/amis-object 3.6.2-beta.5 → 3.6.2-beta.6

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.
@@ -3,13 +3,6 @@ export declare const AmisRecordDetailHeader: (props: any) => Promise<{
3
3
  type: string;
4
4
  id: string;
5
5
  name: string;
6
- data: {
7
- objectName: any;
8
- _id: any;
9
- recordPermissions: any;
10
- uiSchema: any;
11
- record: string;
12
- };
13
6
  body: {
14
7
  type: string;
15
8
  className: string;
@@ -1,26 +1,46 @@
1
1
  export declare const AmisRecordService: (props: any) => Promise<{
2
2
  type: string;
3
3
  className: string;
4
- api: {
5
- method: string;
6
- url: string;
7
- cache: number;
8
- requestAdaptor: string;
9
- adaptor: string;
10
- data: {
11
- query: string;
12
- };
13
- headers: {
14
- Authorization: string;
4
+ onEvent: {
5
+ [x: string]: {
6
+ actions: ({
7
+ actionType: string;
8
+ componentId: string;
9
+ expression: string;
10
+ script?: undefined;
11
+ } | {
12
+ actionType: string;
13
+ script: string;
14
+ expression: string;
15
+ componentId?: undefined;
16
+ })[];
15
17
  };
16
18
  };
17
19
  body: {
18
20
  type: string;
21
+ id: string;
19
22
  className: string;
20
- body: any[];
21
- hiddenOn: string;
23
+ api: {
24
+ method: string;
25
+ url: string;
26
+ cache: number;
27
+ requestAdaptor: string;
28
+ adaptor: string;
29
+ data: {
30
+ query: string;
31
+ };
32
+ headers: {
33
+ Authorization: string;
34
+ };
35
+ };
36
+ body: {
37
+ type: string;
38
+ className: string;
39
+ body: any;
40
+ hiddenOn: string;
41
+ };
42
+ data: any;
43
+ style: any;
44
+ onEvent: any;
22
45
  };
23
- data: any;
24
- style: any;
25
- onEvent: any;
26
46
  }>;
@@ -278,7 +278,7 @@ fieldset.antd-Collapse > legend{
278
278
  /* crud中的顶部选中项未垂直居中 */
279
279
  .antd-Crud .antd-Crud-selection{
280
280
  padding: var(--gap-sm);
281
- border-bottom: 1px solid var(--Table-thead-borderColor);
281
+ /* border-bottom: 1px solid var(--Table-thead-borderColor); */
282
282
  margin-bottom: 0;
283
283
  }
284
284
 
@@ -1932,7 +1932,8 @@ body.steedos {
1932
1932
  min-width: 0.5px !important;
1933
1933
  }
1934
1934
  .steedos-object-table tbody td.antd-Field--quickEditable .antd-Field-quickEditBtn {
1935
- padding-right: 13px;
1935
+ padding-top: 3px;
1936
+ float: right;
1936
1937
  }
1937
1938
  .steedos-object-table tbody td.antd-Field--quickEditable .antd-Field-quickEditBtn svg {
1938
1939
  display: none;
@@ -1949,12 +1950,6 @@ body.steedos {
1949
1950
  .steedos-object-table .datetime-min-w {
1950
1951
  min-width: 12em;
1951
1952
  }
1952
- .steedos-object-table .antd-Table-table thead tr th {
1953
- height: 32px !important;
1954
- }
1955
- .steedos-object-table .antd-Table-table tbody tr {
1956
- height: 46px;
1957
- }
1958
1953
  .page-list-split .steedos-object-table .antd-Table-table tbody tr.antd-Table-placeholder {
1959
1954
  height: var(--Table-placeholder-height);
1960
1955
  }
@@ -2423,3 +2418,11 @@ body.sidebar #sidebar {
2423
2418
  color: #000;
2424
2419
  }
2425
2420
 
2421
+
2422
+ .steedos-record-selected {
2423
+ background: var(--Table-onChecked-bg) !important;
2424
+ color: var(--Table-onChecked-color) !important;
2425
+ }
2426
+ .steedos-record-selected span {
2427
+ color: var(--Table-onChecked-color) !important;
2428
+ }