@steedos-widgets/amis-object 1.3.0-beta.5 → 1.3.0-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.
- package/dist/amis-object.cjs.css +48 -15
- package/dist/amis-object.esm.css +48 -15
- package/dist/amis-object.umd.css +48 -15
- package/dist/assets.json +16 -16
- package/package.json +3 -3
package/dist/amis-object.cjs.css
CHANGED
|
@@ -1202,6 +1202,25 @@ fieldset.antd-Collapse > legend{
|
|
|
1202
1202
|
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-left {
|
|
1203
1203
|
display: none;
|
|
1204
1204
|
}
|
|
1205
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-input {
|
|
1206
|
+
min-width: 0;
|
|
1207
|
+
width: 30px;
|
|
1208
|
+
}
|
|
1209
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-right {
|
|
1210
|
+
width: 25px;
|
|
1211
|
+
}
|
|
1212
|
+
body.zoom-large .steedos-object-table .antd-Table-footToolbar {
|
|
1213
|
+
zoom: 90%;
|
|
1214
|
+
}
|
|
1215
|
+
body.zoom-extra-large .steedos-object-table .antd-Table-footToolbar {
|
|
1216
|
+
zoom: 80%;
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
/* 手机屏幕宽度小于380px时隐藏分页器快速跳转*/
|
|
1220
|
+
@media (max-width: 380px) {
|
|
1221
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Pagination-inputGroup {
|
|
1222
|
+
display: none;
|
|
1223
|
+
}
|
|
1205
1224
|
}
|
|
1206
1225
|
.steedos-object-table .two-lines-truncate {
|
|
1207
1226
|
white-space: pre-wrap;
|
|
@@ -1382,35 +1401,35 @@ fieldset.antd-Collapse > legend{
|
|
|
1382
1401
|
/*
|
|
1383
1402
|
列表快速搜索,手机端及PC端分栏模式需要独占一行
|
|
1384
1403
|
*/
|
|
1385
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1404
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1386
1405
|
width: 100%;
|
|
1387
1406
|
margin-top: 8px;
|
|
1388
1407
|
}
|
|
1389
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1408
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1390
1409
|
width: 100%;
|
|
1391
1410
|
}
|
|
1392
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1411
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1393
1412
|
width: 100%;
|
|
1394
1413
|
}
|
|
1395
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1414
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1396
1415
|
width: 100%;
|
|
1397
1416
|
margin-top: 8px;
|
|
1398
1417
|
}
|
|
1399
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1418
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1400
1419
|
width: 100%;
|
|
1401
1420
|
}
|
|
1402
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1421
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1403
1422
|
width: 100%;
|
|
1404
1423
|
}
|
|
1405
1424
|
@media (max-width: 768px) {
|
|
1406
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1425
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1407
1426
|
width: 100%;
|
|
1408
1427
|
margin-top: 8px;
|
|
1409
1428
|
}
|
|
1410
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1429
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1411
1430
|
width: 100%;
|
|
1412
1431
|
}
|
|
1413
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1432
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1414
1433
|
width: 100%;
|
|
1415
1434
|
}
|
|
1416
1435
|
}
|
|
@@ -1578,28 +1597,42 @@ fieldset.antd-Collapse > legend{
|
|
|
1578
1597
|
}
|
|
1579
1598
|
@media (max-width: 767px) {
|
|
1580
1599
|
.steedos-object-table .antd-Table-content {
|
|
1581
|
-
max-height: calc(100vh -
|
|
1600
|
+
max-height: calc(100vh - 208px);
|
|
1582
1601
|
}
|
|
1583
1602
|
.steedos-object-listview .antd-Table-content {
|
|
1584
|
-
max-height: calc(100vh -
|
|
1603
|
+
max-height: calc(100vh - 299px);
|
|
1585
1604
|
}
|
|
1586
1605
|
body.zoom-large .steedos-object-table .antd-Table-content {
|
|
1587
|
-
max-height: calc(100vh -
|
|
1606
|
+
max-height: calc(100vh - 334px);
|
|
1588
1607
|
}
|
|
1589
1608
|
body.zoom-large .steedos-object-listview .antd-Table-content {
|
|
1590
|
-
max-height: calc(100vh -
|
|
1609
|
+
max-height: calc(100vh - 424px);
|
|
1591
1610
|
}
|
|
1592
1611
|
body.zoom-extra-large .steedos-object-table .antd-Table-content {
|
|
1593
|
-
max-height: calc(100vh -
|
|
1612
|
+
max-height: calc(100vh - 432px);
|
|
1594
1613
|
}
|
|
1595
1614
|
body.zoom-extra-large .steedos-object-listview .antd-Table-content {
|
|
1596
|
-
max-height: calc(100vh -
|
|
1615
|
+
max-height: calc(100vh - 530px);
|
|
1597
1616
|
}
|
|
1598
1617
|
.steedos-global-footer-root .antd-Nav-Menu-horizontal:after {
|
|
1599
1618
|
/*手机端底部导航左右间隔不平衡*/
|
|
1600
1619
|
content: unset;
|
|
1601
1620
|
}
|
|
1602
1621
|
}
|
|
1622
|
+
@media (max-width: 767px) and (max-height: 700px) {
|
|
1623
|
+
body.zoom-large .steedos-object-table .antd-Table-content {
|
|
1624
|
+
max-height: calc(100vh - 304px);
|
|
1625
|
+
}
|
|
1626
|
+
body.zoom-large .steedos-object-listview .antd-Table-content {
|
|
1627
|
+
max-height: calc(100vh - 396px);
|
|
1628
|
+
}
|
|
1629
|
+
body.zoom-extra-large .steedos-object-table .antd-Table-content {
|
|
1630
|
+
max-height: calc(100vh - 412px);
|
|
1631
|
+
}
|
|
1632
|
+
body.zoom-extra-large .steedos-object-listview .antd-Table-content {
|
|
1633
|
+
max-height: calc(100vh - 472px);
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1603
1636
|
.steedos-global-footer ul {
|
|
1604
1637
|
order: unset !important;
|
|
1605
1638
|
}
|
package/dist/amis-object.esm.css
CHANGED
|
@@ -1202,6 +1202,25 @@ fieldset.antd-Collapse > legend{
|
|
|
1202
1202
|
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-left {
|
|
1203
1203
|
display: none;
|
|
1204
1204
|
}
|
|
1205
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-input {
|
|
1206
|
+
min-width: 0;
|
|
1207
|
+
width: 30px;
|
|
1208
|
+
}
|
|
1209
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-right {
|
|
1210
|
+
width: 25px;
|
|
1211
|
+
}
|
|
1212
|
+
body.zoom-large .steedos-object-table .antd-Table-footToolbar {
|
|
1213
|
+
zoom: 90%;
|
|
1214
|
+
}
|
|
1215
|
+
body.zoom-extra-large .steedos-object-table .antd-Table-footToolbar {
|
|
1216
|
+
zoom: 80%;
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
/* 手机屏幕宽度小于380px时隐藏分页器快速跳转*/
|
|
1220
|
+
@media (max-width: 380px) {
|
|
1221
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Pagination-inputGroup {
|
|
1222
|
+
display: none;
|
|
1223
|
+
}
|
|
1205
1224
|
}
|
|
1206
1225
|
.steedos-object-table .two-lines-truncate {
|
|
1207
1226
|
white-space: pre-wrap;
|
|
@@ -1382,35 +1401,35 @@ fieldset.antd-Collapse > legend{
|
|
|
1382
1401
|
/*
|
|
1383
1402
|
列表快速搜索,手机端及PC端分栏模式需要独占一行
|
|
1384
1403
|
*/
|
|
1385
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1404
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1386
1405
|
width: 100%;
|
|
1387
1406
|
margin-top: 8px;
|
|
1388
1407
|
}
|
|
1389
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1408
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1390
1409
|
width: 100%;
|
|
1391
1410
|
}
|
|
1392
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1411
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1393
1412
|
width: 100%;
|
|
1394
1413
|
}
|
|
1395
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1414
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1396
1415
|
width: 100%;
|
|
1397
1416
|
margin-top: 8px;
|
|
1398
1417
|
}
|
|
1399
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1418
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1400
1419
|
width: 100%;
|
|
1401
1420
|
}
|
|
1402
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1421
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1403
1422
|
width: 100%;
|
|
1404
1423
|
}
|
|
1405
1424
|
@media (max-width: 768px) {
|
|
1406
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1425
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1407
1426
|
width: 100%;
|
|
1408
1427
|
margin-top: 8px;
|
|
1409
1428
|
}
|
|
1410
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1429
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1411
1430
|
width: 100%;
|
|
1412
1431
|
}
|
|
1413
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1432
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1414
1433
|
width: 100%;
|
|
1415
1434
|
}
|
|
1416
1435
|
}
|
|
@@ -1578,28 +1597,42 @@ fieldset.antd-Collapse > legend{
|
|
|
1578
1597
|
}
|
|
1579
1598
|
@media (max-width: 767px) {
|
|
1580
1599
|
.steedos-object-table .antd-Table-content {
|
|
1581
|
-
max-height: calc(100vh -
|
|
1600
|
+
max-height: calc(100vh - 208px);
|
|
1582
1601
|
}
|
|
1583
1602
|
.steedos-object-listview .antd-Table-content {
|
|
1584
|
-
max-height: calc(100vh -
|
|
1603
|
+
max-height: calc(100vh - 299px);
|
|
1585
1604
|
}
|
|
1586
1605
|
body.zoom-large .steedos-object-table .antd-Table-content {
|
|
1587
|
-
max-height: calc(100vh -
|
|
1606
|
+
max-height: calc(100vh - 334px);
|
|
1588
1607
|
}
|
|
1589
1608
|
body.zoom-large .steedos-object-listview .antd-Table-content {
|
|
1590
|
-
max-height: calc(100vh -
|
|
1609
|
+
max-height: calc(100vh - 424px);
|
|
1591
1610
|
}
|
|
1592
1611
|
body.zoom-extra-large .steedos-object-table .antd-Table-content {
|
|
1593
|
-
max-height: calc(100vh -
|
|
1612
|
+
max-height: calc(100vh - 432px);
|
|
1594
1613
|
}
|
|
1595
1614
|
body.zoom-extra-large .steedos-object-listview .antd-Table-content {
|
|
1596
|
-
max-height: calc(100vh -
|
|
1615
|
+
max-height: calc(100vh - 530px);
|
|
1597
1616
|
}
|
|
1598
1617
|
.steedos-global-footer-root .antd-Nav-Menu-horizontal:after {
|
|
1599
1618
|
/*手机端底部导航左右间隔不平衡*/
|
|
1600
1619
|
content: unset;
|
|
1601
1620
|
}
|
|
1602
1621
|
}
|
|
1622
|
+
@media (max-width: 767px) and (max-height: 700px) {
|
|
1623
|
+
body.zoom-large .steedos-object-table .antd-Table-content {
|
|
1624
|
+
max-height: calc(100vh - 304px);
|
|
1625
|
+
}
|
|
1626
|
+
body.zoom-large .steedos-object-listview .antd-Table-content {
|
|
1627
|
+
max-height: calc(100vh - 396px);
|
|
1628
|
+
}
|
|
1629
|
+
body.zoom-extra-large .steedos-object-table .antd-Table-content {
|
|
1630
|
+
max-height: calc(100vh - 412px);
|
|
1631
|
+
}
|
|
1632
|
+
body.zoom-extra-large .steedos-object-listview .antd-Table-content {
|
|
1633
|
+
max-height: calc(100vh - 472px);
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1603
1636
|
.steedos-global-footer ul {
|
|
1604
1637
|
order: unset !important;
|
|
1605
1638
|
}
|
package/dist/amis-object.umd.css
CHANGED
|
@@ -1202,6 +1202,25 @@ fieldset.antd-Collapse > legend{
|
|
|
1202
1202
|
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-left {
|
|
1203
1203
|
display: none;
|
|
1204
1204
|
}
|
|
1205
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-input {
|
|
1206
|
+
min-width: 0;
|
|
1207
|
+
width: 30px;
|
|
1208
|
+
}
|
|
1209
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Crud-toolbar-item .antd-Pagination-inputGroup-right {
|
|
1210
|
+
width: 25px;
|
|
1211
|
+
}
|
|
1212
|
+
body.zoom-large .steedos-object-table .antd-Table-footToolbar {
|
|
1213
|
+
zoom: 90%;
|
|
1214
|
+
}
|
|
1215
|
+
body.zoom-extra-large .steedos-object-table .antd-Table-footToolbar {
|
|
1216
|
+
zoom: 80%;
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
/* 手机屏幕宽度小于380px时隐藏分页器快速跳转*/
|
|
1220
|
+
@media (max-width: 380px) {
|
|
1221
|
+
.steedos-object-table .antd-Table-footToolbar .antd-Pagination-inputGroup {
|
|
1222
|
+
display: none;
|
|
1223
|
+
}
|
|
1205
1224
|
}
|
|
1206
1225
|
.steedos-object-table .two-lines-truncate {
|
|
1207
1226
|
white-space: pre-wrap;
|
|
@@ -1382,35 +1401,35 @@ fieldset.antd-Collapse > legend{
|
|
|
1382
1401
|
/*
|
|
1383
1402
|
列表快速搜索,手机端及PC端分栏模式需要独占一行
|
|
1384
1403
|
*/
|
|
1385
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1404
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1386
1405
|
width: 100%;
|
|
1387
1406
|
margin-top: 8px;
|
|
1388
1407
|
}
|
|
1389
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1408
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1390
1409
|
width: 100%;
|
|
1391
1410
|
}
|
|
1392
|
-
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1411
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1393
1412
|
width: 100%;
|
|
1394
1413
|
}
|
|
1395
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1414
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1396
1415
|
width: 100%;
|
|
1397
1416
|
margin-top: 8px;
|
|
1398
1417
|
}
|
|
1399
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1418
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1400
1419
|
width: 100%;
|
|
1401
1420
|
}
|
|
1402
|
-
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1421
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1403
1422
|
width: 100%;
|
|
1404
1423
|
}
|
|
1405
1424
|
@media (max-width: 768px) {
|
|
1406
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1425
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1407
1426
|
width: 100%;
|
|
1408
1427
|
margin-top: 8px;
|
|
1409
1428
|
}
|
|
1410
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1429
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1411
1430
|
width: 100%;
|
|
1412
1431
|
}
|
|
1413
|
-
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1432
|
+
.steedos-object-listview .antd-Crud .antd-Table-headToolbar .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1414
1433
|
width: 100%;
|
|
1415
1434
|
}
|
|
1416
1435
|
}
|
|
@@ -1578,28 +1597,42 @@ fieldset.antd-Collapse > legend{
|
|
|
1578
1597
|
}
|
|
1579
1598
|
@media (max-width: 767px) {
|
|
1580
1599
|
.steedos-object-table .antd-Table-content {
|
|
1581
|
-
max-height: calc(100vh -
|
|
1600
|
+
max-height: calc(100vh - 208px);
|
|
1582
1601
|
}
|
|
1583
1602
|
.steedos-object-listview .antd-Table-content {
|
|
1584
|
-
max-height: calc(100vh -
|
|
1603
|
+
max-height: calc(100vh - 299px);
|
|
1585
1604
|
}
|
|
1586
1605
|
body.zoom-large .steedos-object-table .antd-Table-content {
|
|
1587
|
-
max-height: calc(100vh -
|
|
1606
|
+
max-height: calc(100vh - 334px);
|
|
1588
1607
|
}
|
|
1589
1608
|
body.zoom-large .steedos-object-listview .antd-Table-content {
|
|
1590
|
-
max-height: calc(100vh -
|
|
1609
|
+
max-height: calc(100vh - 424px);
|
|
1591
1610
|
}
|
|
1592
1611
|
body.zoom-extra-large .steedos-object-table .antd-Table-content {
|
|
1593
|
-
max-height: calc(100vh -
|
|
1612
|
+
max-height: calc(100vh - 432px);
|
|
1594
1613
|
}
|
|
1595
1614
|
body.zoom-extra-large .steedos-object-listview .antd-Table-content {
|
|
1596
|
-
max-height: calc(100vh -
|
|
1615
|
+
max-height: calc(100vh - 530px);
|
|
1597
1616
|
}
|
|
1598
1617
|
.steedos-global-footer-root .antd-Nav-Menu-horizontal:after {
|
|
1599
1618
|
/*手机端底部导航左右间隔不平衡*/
|
|
1600
1619
|
content: unset;
|
|
1601
1620
|
}
|
|
1602
1621
|
}
|
|
1622
|
+
@media (max-width: 767px) and (max-height: 700px) {
|
|
1623
|
+
body.zoom-large .steedos-object-table .antd-Table-content {
|
|
1624
|
+
max-height: calc(100vh - 304px);
|
|
1625
|
+
}
|
|
1626
|
+
body.zoom-large .steedos-object-listview .antd-Table-content {
|
|
1627
|
+
max-height: calc(100vh - 396px);
|
|
1628
|
+
}
|
|
1629
|
+
body.zoom-extra-large .steedos-object-table .antd-Table-content {
|
|
1630
|
+
max-height: calc(100vh - 412px);
|
|
1631
|
+
}
|
|
1632
|
+
body.zoom-extra-large .steedos-object-listview .antd-Table-content {
|
|
1633
|
+
max-height: calc(100vh - 472px);
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1603
1636
|
.steedos-global-footer ul {
|
|
1604
1637
|
order: unset !important;
|
|
1605
1638
|
}
|
package/dist/assets.json
CHANGED
|
@@ -11,31 +11,31 @@
|
|
|
11
11
|
{
|
|
12
12
|
"package": "@steedos-widgets/fullcalendar",
|
|
13
13
|
"urls": [
|
|
14
|
-
"https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.
|
|
15
|
-
"https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.
|
|
14
|
+
"https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.6/dist/fullcalendar.umd.js",
|
|
15
|
+
"https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.6/dist/fullcalendar.umd.css"
|
|
16
16
|
],
|
|
17
17
|
"library": "BuilderFullCalendar"
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
"package": "@steedos-widgets/reactflow",
|
|
21
21
|
"urls": [
|
|
22
|
-
"https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.
|
|
23
|
-
"https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.
|
|
22
|
+
"https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.6/dist/reactflow.umd.js",
|
|
23
|
+
"https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.6/dist/reactflow.umd.css"
|
|
24
24
|
],
|
|
25
25
|
"library": "BuilderReactFlow"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"package": "steedos-lib",
|
|
29
29
|
"urls": [
|
|
30
|
-
"https://unpkg.com/@steedos-widgets/steedos-lib@1.3.0-beta.
|
|
30
|
+
"https://unpkg.com/@steedos-widgets/steedos-lib@1.3.0-beta.6/dist/index.umd.js"
|
|
31
31
|
],
|
|
32
32
|
"library": "SteedosLib"
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"package": "@steedos-widgets/amis-object",
|
|
36
36
|
"urls": [
|
|
37
|
-
"https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.
|
|
38
|
-
"https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.
|
|
37
|
+
"https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.6/dist/amis-object.umd.js",
|
|
38
|
+
"https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.6/dist/amis-object.umd.css"
|
|
39
39
|
],
|
|
40
40
|
"library": "BuilderAmisObject"
|
|
41
41
|
}
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"npm": {
|
|
47
47
|
"package": "@steedos-widgets/fullcalendar"
|
|
48
48
|
},
|
|
49
|
-
"url": "https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.
|
|
49
|
+
"url": "https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.6/dist/meta.js",
|
|
50
50
|
"urls": {
|
|
51
|
-
"default": "https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.
|
|
52
|
-
"design": "https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.
|
|
51
|
+
"default": "https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.6/dist/meta.js",
|
|
52
|
+
"design": "https://unpkg.com/@steedos-widgets/fullcalendar@1.3.0-beta.6/dist/meta.js"
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
{
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"npm": {
|
|
58
58
|
"package": "@steedos-widgets/reactflow"
|
|
59
59
|
},
|
|
60
|
-
"url": "https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.
|
|
60
|
+
"url": "https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.6/dist/meta.js",
|
|
61
61
|
"urls": {
|
|
62
|
-
"default": "https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.
|
|
63
|
-
"design": "https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.
|
|
62
|
+
"default": "https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.6/dist/meta.js",
|
|
63
|
+
"design": "https://unpkg.com/@steedos-widgets/reactflow@1.3.0-beta.6/dist/meta.js"
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
{
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
"npm": {
|
|
69
69
|
"package": "@steedos-widgets/amis-object"
|
|
70
70
|
},
|
|
71
|
-
"url": "https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.
|
|
71
|
+
"url": "https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.6/dist/meta.js",
|
|
72
72
|
"urls": {
|
|
73
|
-
"default": "https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.
|
|
74
|
-
"design": "https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.
|
|
73
|
+
"default": "https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.6/dist/meta.js",
|
|
74
|
+
"design": "https://unpkg.com/@steedos-widgets/amis-object@1.3.0-beta.6/dist/meta.js"
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
]
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-object",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.3.0-beta.
|
|
4
|
+
"version": "1.3.0-beta.6",
|
|
5
5
|
"main": "dist/amis-object.cjs.js",
|
|
6
6
|
"module": "dist/amis-object.esm.js",
|
|
7
7
|
"unpkg": "dist/amis-object.umd.js",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
"uglify-js": "^3.17.0"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@steedos-widgets/amis-lib": "1.3.0-beta.
|
|
64
|
+
"@steedos-widgets/amis-lib": "1.3.0-beta.6",
|
|
65
65
|
"autoprefixer": "^10.4.13",
|
|
66
66
|
"postcss": "^8.4.19",
|
|
67
67
|
"tailwindcss": "^3.2.4"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "966e19d7b942d3c6938947a201a77b732cd56756"
|
|
70
70
|
}
|