dcp-design-react 1.12.13 → 1.12.14
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/lib/config-provider/src/config-provider.d.ts +2 -0
- package/lib/form/src/utils.d.ts +0 -1
- package/lib/form/style/index.less +392 -391
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/index.d.ts +0 -1
- package/lib/locale/index.js +5 -6
- package/lib/pivot-grid/style/grid-layout.less +503 -501
- package/lib/style/index.css +19 -10
- package/lib/style/index.min.css +1 -1
- package/lib/style/mixins/reset.less +43 -34
- package/lib/table/src/table/props.d.ts +1 -2
- package/lib/table/src/table/types.d.ts +3 -3
- package/lib/table/style/header.less +303 -303
- package/package.json +1 -1
package/lib/style/index.css
CHANGED
|
@@ -27867,21 +27867,23 @@ body {
|
|
|
27867
27867
|
.qm-form .ant-form-item {
|
|
27868
27868
|
margin-bottom: 12px;
|
|
27869
27869
|
}
|
|
27870
|
-
.qm-form .ant-form-item .ant-form-item-label > label
|
|
27870
|
+
.qm-form .ant-form-item .ant-form-item-label > label:has(.ant-select) {
|
|
27871
27871
|
width: 100%;
|
|
27872
|
-
display: inline-flex;
|
|
27873
|
-
justify-content: right;
|
|
27874
27872
|
}
|
|
27875
|
-
.qm-form .ant-form-item .ant-form-item-label > label
|
|
27876
|
-
flex: auto;
|
|
27877
|
-
width: 0;
|
|
27873
|
+
.qm-form .ant-form-item .ant-form-item-label > label:has(.ant-select) .ant-select {
|
|
27878
27874
|
text-align: left;
|
|
27879
27875
|
}
|
|
27880
|
-
.qm-form .ant-form-item .ant-form-item-label-wrap {
|
|
27876
|
+
.qm-form .ant-form-item .ant-form-item-label-wrap > label .text {
|
|
27881
27877
|
line-height: 1.075;
|
|
27878
|
+
display: -webkit-box;
|
|
27879
|
+
-webkit-box-orient: vertical;
|
|
27880
|
+
-webkit-line-clamp: 2;
|
|
27881
|
+
line-clamp: 2;
|
|
27882
|
+
overflow: hidden;
|
|
27883
|
+
text-overflow: ellipsis;
|
|
27882
27884
|
}
|
|
27883
|
-
.qm-form .ant-form-item .ant-form-item-label
|
|
27884
|
-
|
|
27885
|
+
.qm-form .ant-form-item .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
|
|
27886
|
+
margin: 0 2px;
|
|
27885
27887
|
}
|
|
27886
27888
|
.qm-form .ant-form-item input::-moz-placeholder {
|
|
27887
27889
|
text-align: left;
|
|
@@ -29719,7 +29721,12 @@ body {
|
|
|
29719
29721
|
}
|
|
29720
29722
|
.header--column .cell--wrapper .cell--text .cell {
|
|
29721
29723
|
padding-right: 2px;
|
|
29722
|
-
|
|
29724
|
+
display: -webkit-box;
|
|
29725
|
+
-webkit-box-orient: vertical;
|
|
29726
|
+
-webkit-line-clamp: 2;
|
|
29727
|
+
line-clamp: 2;
|
|
29728
|
+
overflow: hidden;
|
|
29729
|
+
text-overflow: ellipsis;
|
|
29723
29730
|
}
|
|
29724
29731
|
.header--column .cell--wrapper .cell--text .tip {
|
|
29725
29732
|
padding: 2px;
|
|
@@ -31425,6 +31432,7 @@ body {
|
|
|
31425
31432
|
.qm-pivot-grid__layout .footer .table-cell.selection-column {
|
|
31426
31433
|
justify-content: center;
|
|
31427
31434
|
border-right-color: transparent;
|
|
31435
|
+
cursor: default;
|
|
31428
31436
|
}
|
|
31429
31437
|
.qm-pivot-grid__layout .header .table-cell .action,
|
|
31430
31438
|
.qm-pivot-grid__layout .body .table-cell .action,
|
|
@@ -31445,6 +31453,7 @@ body {
|
|
|
31445
31453
|
width: 20px;
|
|
31446
31454
|
height: 20px;
|
|
31447
31455
|
color: rgba(0, 0, 0, 0.45);
|
|
31456
|
+
cursor: pointer;
|
|
31448
31457
|
visibility: hidden;
|
|
31449
31458
|
}
|
|
31450
31459
|
.qm-pivot-grid__layout .header .table-cell .action .drag-icon,
|