@steedos-widgets/amis-object 1.2.38 → 1.2.39
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 +60 -11
- package/dist/amis-object.cjs.js +196 -63
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +60 -11
- package/dist/amis-object.esm.js +196 -63
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +60 -11
- package/dist/amis-object.umd.js +196 -63
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +16 -16
- package/dist/pages/PageListView.d.ts +2 -1
- package/package.json +3 -3
package/dist/amis-object.cjs.css
CHANGED
|
@@ -254,6 +254,16 @@ fieldset.antd-Collapse > legend{
|
|
|
254
254
|
height: unset;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
+
/* crud中的快速搜索框样式改成与按钮风格统一的边框 */
|
|
258
|
+
.antd-Crud .antd-Crud-toolbar .antd-SearchBox.is-active{
|
|
259
|
+
border-color: var(--button-default-default-top-border-color);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/* crud中的快速搜索框图标没对齐 */
|
|
263
|
+
.antd-Crud .antd-Crud-toolbar .antd-SearchBox.is-active svg.icon{
|
|
264
|
+
top: unset
|
|
265
|
+
}
|
|
266
|
+
|
|
257
267
|
.ant-dropdown-menu {
|
|
258
268
|
border: 1px solid #e5e5e5;
|
|
259
269
|
border-radius: 0.25rem;
|
|
@@ -409,6 +419,9 @@ fieldset.antd-Collapse > legend{
|
|
|
409
419
|
.mr-4 {
|
|
410
420
|
margin-right: 1rem
|
|
411
421
|
}
|
|
422
|
+
.mr-1 {
|
|
423
|
+
margin-right: 0.25rem
|
|
424
|
+
}
|
|
412
425
|
.mr-2 {
|
|
413
426
|
margin-right: 0.5rem
|
|
414
427
|
}
|
|
@@ -427,9 +440,6 @@ fieldset.antd-Collapse > legend{
|
|
|
427
440
|
.-ml-px {
|
|
428
441
|
margin-left: -1px
|
|
429
442
|
}
|
|
430
|
-
.mr-1 {
|
|
431
|
-
margin-right: 0.25rem
|
|
432
|
-
}
|
|
433
443
|
.mb-\[-3px\] {
|
|
434
444
|
margin-bottom: -3px
|
|
435
445
|
}
|
|
@@ -871,6 +881,9 @@ fieldset.antd-Collapse > legend{
|
|
|
871
881
|
.leading-5 {
|
|
872
882
|
line-height: 1.25rem
|
|
873
883
|
}
|
|
884
|
+
.leading-6 {
|
|
885
|
+
line-height: 1.5rem
|
|
886
|
+
}
|
|
874
887
|
.leading-3 {
|
|
875
888
|
line-height: .75rem
|
|
876
889
|
}
|
|
@@ -1167,8 +1180,15 @@ fieldset.antd-Collapse > legend{
|
|
|
1167
1180
|
display: none;
|
|
1168
1181
|
}
|
|
1169
1182
|
}
|
|
1170
|
-
.steedos-select-user
|
|
1171
|
-
margin-
|
|
1183
|
+
.steedos-select-user .antd-Table {
|
|
1184
|
+
margin-bottom: 0;
|
|
1185
|
+
position: unset;
|
|
1186
|
+
}
|
|
1187
|
+
.steedos-select-user .antd-Table .antd-Table-content {
|
|
1188
|
+
max-height: calc(100vh - 343px);
|
|
1189
|
+
}
|
|
1190
|
+
.steedos-select-user .antd-Table .antd-SearchBox {
|
|
1191
|
+
margin-top: 0;
|
|
1172
1192
|
}
|
|
1173
1193
|
@media (max-width: 576px) {
|
|
1174
1194
|
.antd-Crud-toolbar {
|
|
@@ -1343,6 +1363,41 @@ fieldset.antd-Collapse > legend{
|
|
|
1343
1363
|
width: 100%;
|
|
1344
1364
|
justify-content: unset;
|
|
1345
1365
|
}
|
|
1366
|
+
/*
|
|
1367
|
+
列表快速搜索,手机端及PC端分栏模式需要独占一行
|
|
1368
|
+
*/
|
|
1369
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1370
|
+
width: 100%;
|
|
1371
|
+
margin-top: 8px;
|
|
1372
|
+
}
|
|
1373
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1374
|
+
width: 100%;
|
|
1375
|
+
}
|
|
1376
|
+
.steedos-crud-mobile-search-box .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1377
|
+
width: 100%;
|
|
1378
|
+
}
|
|
1379
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1380
|
+
width: 100%;
|
|
1381
|
+
margin-top: 8px;
|
|
1382
|
+
}
|
|
1383
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1384
|
+
width: 100%;
|
|
1385
|
+
}
|
|
1386
|
+
.page-list-split .steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1387
|
+
width: 100%;
|
|
1388
|
+
}
|
|
1389
|
+
@media (max-width: 768px) {
|
|
1390
|
+
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child {
|
|
1391
|
+
width: 100%;
|
|
1392
|
+
margin-top: 8px;
|
|
1393
|
+
}
|
|
1394
|
+
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper {
|
|
1395
|
+
width: 100%;
|
|
1396
|
+
}
|
|
1397
|
+
.steedos-object-listview .antd-Crud .antd-Crud-toolbar .antd-Crud-toolbar-item--right:last-child .antd-TooltipWrapper .antd-SearchBox.is-active {
|
|
1398
|
+
width: 100%;
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1346
1401
|
|
|
1347
1402
|
@media (min-width: 767px) {
|
|
1348
1403
|
.steedos-object-table tbody td.antd-Field--quickEditable div {
|
|
@@ -1407,12 +1462,6 @@ fieldset.antd-Collapse > legend{
|
|
|
1407
1462
|
.h-fill {
|
|
1408
1463
|
height: -webkit-fill-available !important;
|
|
1409
1464
|
}
|
|
1410
|
-
.steedos-global-header-root .sidebar-wrapper .antd-Nav .antd-Nav-Menu-item-label {
|
|
1411
|
-
white-space: normal;
|
|
1412
|
-
line-height: 1.5;
|
|
1413
|
-
padding-top: 6px;
|
|
1414
|
-
padding-bottom: 6px;
|
|
1415
|
-
}
|
|
1416
1465
|
.steedos-global-header-root .sidebar-wrapper .antd-Nav .antd-Nav-Menu-item-link {
|
|
1417
1466
|
min-height: var(--Nav-Item-height);
|
|
1418
1467
|
height: unset;
|