@steedos-widgets/amis-object 1.3.9 → 1.3.11
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 +22 -0
- package/dist/amis-object.cjs.js +11199 -11154
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +22 -0
- package/dist/amis-object.esm.js +11200 -11155
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +22 -0
- package/dist/amis-object.umd.js +283 -273
- 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;
|
|
@@ -1625,6 +1632,12 @@ body.steedos {
|
|
|
1625
1632
|
.antd-Select-popover .antd-Select-menu .antd-Select-option .antd-Checkbox--checkbox > span {
|
|
1626
1633
|
vertical-align: middle;
|
|
1627
1634
|
}
|
|
1635
|
+
.steedos-overflow-visible-dialog.antd-Modal .antd-Modal-content {
|
|
1636
|
+
max-height: unset;
|
|
1637
|
+
}
|
|
1638
|
+
.steedos-overflow-visible-dialog.antd-Modal .antd-Modal-content .antd-Modal-body {
|
|
1639
|
+
overflow: visible;
|
|
1640
|
+
}
|
|
1628
1641
|
}
|
|
1629
1642
|
.steedos-object-form .steedos-input-rich-text-readonly .antd-RichTextControl {
|
|
1630
1643
|
border: 0;
|
|
@@ -1832,6 +1845,15 @@ body.steedos {
|
|
|
1832
1845
|
.steedos-object-table .datetime-min-w {
|
|
1833
1846
|
min-width: 12em;
|
|
1834
1847
|
}
|
|
1848
|
+
.steedos-object-table .antd-Table-table thead tr th {
|
|
1849
|
+
height: 32px !important;
|
|
1850
|
+
}
|
|
1851
|
+
.steedos-object-table .antd-Table-table tbody tr {
|
|
1852
|
+
height: 46px;
|
|
1853
|
+
}
|
|
1854
|
+
.page-list-split .steedos-object-table .antd-Table-table tbody tr.antd-Table-placeholder {
|
|
1855
|
+
height: var(--Table-placeholder-height);
|
|
1856
|
+
}
|
|
1835
1857
|
}
|
|
1836
1858
|
.steedos-object-table.steedos-crud-mode-cards .antd-Crud {
|
|
1837
1859
|
height: 100%;
|