@steedos-widgets/amis-object 1.2.27 → 1.2.30
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/AmisObjectListview.d.ts +1 -0
- package/dist/amis/AmisRecordDetailHeader.d.ts +1 -2
- package/dist/amis-object.cjs.css +29 -3
- package/dist/amis-object.cjs.js +913 -820
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +29 -3
- package/dist/amis-object.esm.js +913 -820
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +29 -3
- package/dist/amis-object.umd.js +913 -820
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +11 -11
- package/dist/meta.js +11 -6
- 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
|
}
|
|
@@ -1300,11 +1300,37 @@ body {
|
|
|
1300
1300
|
}
|
|
1301
1301
|
}
|
|
1302
1302
|
|
|
1303
|
+
.steedos-object-listview .antd-DropDown .antd-Button {
|
|
1304
|
+
border-radius: 4px;
|
|
1305
|
+
height: var(--button-size-default-height);
|
|
1306
|
+
}
|
|
1307
|
+
.steedos-object-listview .split-dropdown-buttons li {
|
|
1308
|
+
padding: unset;
|
|
1309
|
+
height: unset;
|
|
1310
|
+
}
|
|
1311
|
+
.steedos-object-listview .split-dropdown-buttons li .antd-Button {
|
|
1312
|
+
border: none !important;
|
|
1313
|
+
background: unset !important;
|
|
1314
|
+
width: 100%;
|
|
1315
|
+
justify-content: unset;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1303
1318
|
@media (min-width: 767px) {
|
|
1304
|
-
.steedos-object-table .antd-Field
|
|
1319
|
+
.steedos-object-table tbody td.antd-Field--quickEditable div {
|
|
1320
|
+
display: flex;
|
|
1321
|
+
align-items: center;
|
|
1322
|
+
justify-content: space-between;
|
|
1323
|
+
}
|
|
1324
|
+
.steedos-object-table tbody td.antd-Field--quickEditable div .antd-Field-quickEditBtn {
|
|
1325
|
+
padding-right: 13px;
|
|
1326
|
+
}
|
|
1327
|
+
.steedos-object-table tbody td.antd-Field--quickEditable div .antd-Field-quickEditBtn svg {
|
|
1305
1328
|
display: none;
|
|
1306
1329
|
}
|
|
1307
|
-
.steedos-object-table .antd-Field--quickEditable:hover .antd-Field-quickEditBtn {
|
|
1330
|
+
.steedos-object-table tbody td.antd-Field--quickEditable:hover div .antd-Field-quickEditBtn {
|
|
1331
|
+
padding-right: 0;
|
|
1332
|
+
}
|
|
1333
|
+
.steedos-object-table tbody td.antd-Field--quickEditable:hover div .antd-Field-quickEditBtn svg {
|
|
1308
1334
|
display: inline-block;
|
|
1309
1335
|
}
|
|
1310
1336
|
}
|