@jiaozhiye/qm-design-react 1.12.4 → 1.12.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/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/pivot-grid/style/grid-layout.less +13 -6
- package/lib/style/index.css +10 -4
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/context/index.d.ts +1 -1
- package/lib/table/src/hooks/useImperativeMethod.d.ts +1 -1
- package/lib/table/src/hooks/useTableCore.d.ts +1 -2
- package/lib/table/src/hooks/useTableRef.d.ts +1 -4
- package/lib/table/src/table/props.d.ts +2 -1
- package/lib/table/src/table/types.d.ts +2 -9
- package/lib/table/src/utils/index.d.ts +4 -5
- package/package.json +1 -1
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
justify-content: flex-end;
|
|
187
187
|
height: 100%;
|
|
188
188
|
width: 100%;
|
|
189
|
-
padding: 0
|
|
189
|
+
padding: 0 4px;
|
|
190
190
|
color: @--text-color-placeholder;
|
|
191
191
|
cursor: pointer;
|
|
192
192
|
visibility: hidden;
|
|
@@ -361,8 +361,20 @@
|
|
|
361
361
|
position: relative;
|
|
362
362
|
left: 0;
|
|
363
363
|
top: 0;
|
|
364
|
+
&.no-group {
|
|
365
|
+
.row-item:last-child {
|
|
366
|
+
.table-cell {
|
|
367
|
+
border-bottom: 1px solid @--border-color-secondary;
|
|
368
|
+
}
|
|
369
|
+
.cell--indent {
|
|
370
|
+
height: fill-available;
|
|
371
|
+
height: -webkit-fill-available;
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
364
375
|
.group-label {
|
|
365
376
|
position: absolute;
|
|
377
|
+
box-sizing: content-box;
|
|
366
378
|
border: 1px solid @--border-color-secondary;
|
|
367
379
|
background-color: #fff;
|
|
368
380
|
overflow: hidden;
|
|
@@ -404,11 +416,6 @@
|
|
|
404
416
|
.row-item {
|
|
405
417
|
position: absolute;
|
|
406
418
|
border-left: 1px solid @--border-color-secondary;
|
|
407
|
-
&.last {
|
|
408
|
-
.table-cell {
|
|
409
|
-
border-bottom: 1px solid @--border-color-secondary;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
419
|
.table-row {
|
|
413
420
|
display: flex;
|
|
414
421
|
align-items: center;
|
package/lib/style/index.css
CHANGED
|
@@ -31530,7 +31530,7 @@ body {
|
|
|
31530
31530
|
justify-content: flex-end;
|
|
31531
31531
|
height: 100%;
|
|
31532
31532
|
width: 100%;
|
|
31533
|
-
padding: 0
|
|
31533
|
+
padding: 0 4px;
|
|
31534
31534
|
color: rgba(0, 0, 0, 0.45);
|
|
31535
31535
|
cursor: pointer;
|
|
31536
31536
|
visibility: hidden;
|
|
@@ -31705,8 +31705,17 @@ body {
|
|
|
31705
31705
|
left: 0;
|
|
31706
31706
|
top: 0;
|
|
31707
31707
|
}
|
|
31708
|
+
.qm-pivot-grid__layout .container.no-group .row-item:last-child .table-cell {
|
|
31709
|
+
border-bottom: 1px solid #e8e8e8;
|
|
31710
|
+
}
|
|
31711
|
+
.qm-pivot-grid__layout .container.no-group .row-item:last-child .cell--indent {
|
|
31712
|
+
height: -moz-available;
|
|
31713
|
+
height: fill-available;
|
|
31714
|
+
height: -webkit-fill-available;
|
|
31715
|
+
}
|
|
31708
31716
|
.qm-pivot-grid__layout .container .group-label {
|
|
31709
31717
|
position: absolute;
|
|
31718
|
+
box-sizing: content-box;
|
|
31710
31719
|
border: 1px solid #e8e8e8;
|
|
31711
31720
|
background-color: #fff;
|
|
31712
31721
|
overflow: hidden;
|
|
@@ -31747,9 +31756,6 @@ body {
|
|
|
31747
31756
|
position: absolute;
|
|
31748
31757
|
border-left: 1px solid #e8e8e8;
|
|
31749
31758
|
}
|
|
31750
|
-
.qm-pivot-grid__layout .container .row-item.last .table-cell {
|
|
31751
|
-
border-bottom: 1px solid #e8e8e8;
|
|
31752
|
-
}
|
|
31753
31759
|
.qm-pivot-grid__layout .container .row-item .table-row {
|
|
31754
31760
|
display: flex;
|
|
31755
31761
|
align-items: center;
|