@steedos-widgets/amis-object 1.3.9 → 1.3.10
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/AmisInputTable.d.ts +1 -4
- package/dist/amis-object.cjs.css +13 -0
- package/dist/amis-object.cjs.js +11183 -11142
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +13 -0
- package/dist/amis-object.esm.js +11184 -11143
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +13 -0
- package/dist/amis-object.umd.js +278 -269
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +21 -21
- package/dist/meta.js +26 -6
- package/package.json +3 -3
|
@@ -5,14 +5,11 @@ export declare const AmisInputTable: (props: any) => Promise<{
|
|
|
5
5
|
type: string;
|
|
6
6
|
label: any;
|
|
7
7
|
name: any;
|
|
8
|
-
addable: any;
|
|
9
|
-
editable: any;
|
|
10
8
|
draggable: any;
|
|
11
9
|
showIndex: any;
|
|
12
10
|
perPage: any;
|
|
13
11
|
id: any;
|
|
14
|
-
columns: any;
|
|
15
|
-
needConfirm: boolean;
|
|
12
|
+
columns: any[];
|
|
16
13
|
strictMode: boolean;
|
|
17
14
|
showTableAddBtn: boolean;
|
|
18
15
|
showFooterAddBtn: boolean;
|
package/dist/amis-object.cjs.css
CHANGED
|
@@ -300,6 +300,13 @@ fieldset.antd-Collapse > legend{
|
|
|
300
300
|
color: rgba(0,0,0,.25)
|
|
301
301
|
}
|
|
302
302
|
|
|
303
|
+
.antd-Transfer .antd-GroupedSelection-item .antd-GroupedSelection-itemLabel,
|
|
304
|
+
.antd-Transfer .antd-Selections-item .antd-Selections-label{
|
|
305
|
+
overflow: hidden;
|
|
306
|
+
text-overflow: ellipsis;
|
|
307
|
+
white-space: nowrap;
|
|
308
|
+
}
|
|
309
|
+
|
|
303
310
|
.ant-dropdown-menu {
|
|
304
311
|
border: 1px solid #e5e5e5;
|
|
305
312
|
border-radius: 0.25rem;
|
|
@@ -1936,6 +1943,12 @@ body.steedos {
|
|
|
1936
1943
|
float: none;
|
|
1937
1944
|
}
|
|
1938
1945
|
}
|
|
1946
|
+
.antd-Table-table thead tr th {
|
|
1947
|
+
height: 32px !important;
|
|
1948
|
+
}
|
|
1949
|
+
.antd-Table-table tbody tr {
|
|
1950
|
+
height: 46px;
|
|
1951
|
+
}
|
|
1939
1952
|
|
|
1940
1953
|
@media (max-width: 768px) {
|
|
1941
1954
|
.record-detail-header-name {
|