@steedos-widgets/amis-object 1.2.26 → 1.2.28
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/amis/AmisRecordDetailHeader.d.ts +1 -2
- package/dist/amis-object.cjs.css +18 -4
- package/dist/amis-object.cjs.js +164 -119
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +18 -4
- package/dist/amis-object.esm.js +164 -119
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +18 -4
- package/dist/amis-object.umd.js +164 -119
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +11 -11
- package/dist/meta.js +14 -12
- package/package.json +3 -3
|
@@ -95,6 +95,7 @@ export declare const AmisRecordDetailHeader: (props: any) => Promise<{
|
|
|
95
95
|
drawer: {
|
|
96
96
|
type: string;
|
|
97
97
|
title: string;
|
|
98
|
+
id: string;
|
|
98
99
|
body: {
|
|
99
100
|
type: string;
|
|
100
101
|
id: string;
|
|
@@ -111,7 +112,6 @@ export declare const AmisRecordDetailHeader: (props: any) => Promise<{
|
|
|
111
112
|
btnClassName: string;
|
|
112
113
|
size: string;
|
|
113
114
|
}[];
|
|
114
|
-
id: string;
|
|
115
115
|
position: string;
|
|
116
116
|
closeOnOutside: boolean;
|
|
117
117
|
resizable: boolean;
|
|
@@ -122,7 +122,6 @@ export declare const AmisRecordDetailHeader: (props: any) => Promise<{
|
|
|
122
122
|
}[];
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
|
-
id: string;
|
|
126
125
|
};
|
|
127
126
|
};
|
|
128
127
|
md: string;
|
package/dist/amis-object.cjs.css
CHANGED
|
@@ -200,7 +200,7 @@ body {
|
|
|
200
200
|
|
|
201
201
|
|
|
202
202
|
/* 实现弹框中的crud中的inputTree高度满屏,目前选人控件的左侧树样式 */
|
|
203
|
-
.
|
|
203
|
+
.antd-Modal-body .antd-Crud .antd-Table .antd-Tree{
|
|
204
204
|
max-height: unset;
|
|
205
205
|
overflow: unset;
|
|
206
206
|
}
|
|
@@ -1213,7 +1213,10 @@ body {
|
|
|
1213
1213
|
height: 50px;
|
|
1214
1214
|
}
|
|
1215
1215
|
|
|
1216
|
-
.
|
|
1216
|
+
.lookup-left {
|
|
1217
|
+
max-width: 50% !important;
|
|
1218
|
+
}
|
|
1219
|
+
.lookup-left .antd-Select-popover {
|
|
1217
1220
|
width: auto !important;
|
|
1218
1221
|
}
|
|
1219
1222
|
|
|
@@ -1298,10 +1301,21 @@ body {
|
|
|
1298
1301
|
}
|
|
1299
1302
|
|
|
1300
1303
|
@media (min-width: 767px) {
|
|
1301
|
-
.steedos-object-table .antd-Field
|
|
1304
|
+
.steedos-object-table tbody td.antd-Field--quickEditable div {
|
|
1305
|
+
display: flex;
|
|
1306
|
+
align-items: center;
|
|
1307
|
+
justify-content: space-between;
|
|
1308
|
+
}
|
|
1309
|
+
.steedos-object-table tbody td.antd-Field--quickEditable div .antd-Field-quickEditBtn {
|
|
1310
|
+
padding-right: 13px;
|
|
1311
|
+
}
|
|
1312
|
+
.steedos-object-table tbody td.antd-Field--quickEditable div .antd-Field-quickEditBtn svg {
|
|
1302
1313
|
display: none;
|
|
1303
1314
|
}
|
|
1304
|
-
.steedos-object-table .antd-Field--quickEditable:hover .antd-Field-quickEditBtn {
|
|
1315
|
+
.steedos-object-table tbody td.antd-Field--quickEditable:hover div .antd-Field-quickEditBtn {
|
|
1316
|
+
padding-right: 0;
|
|
1317
|
+
}
|
|
1318
|
+
.steedos-object-table tbody td.antd-Field--quickEditable:hover div .antd-Field-quickEditBtn svg {
|
|
1305
1319
|
display: inline-block;
|
|
1306
1320
|
}
|
|
1307
1321
|
}
|