dcp-design-react 1.12.17 → 1.12.19
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/form/src/types.d.ts +4 -0
- package/lib/hooks/useControlledState.d.ts +7 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/pivot-grid/src/hooks/use-virtual-list.d.ts +1 -0
- package/lib/pivot-grid/style/grid-layout.less +504 -507
- package/lib/style/index.css +15 -18
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/hooks/useTableCore.d.ts +1 -0
- package/lib/table/src/hooks/useTableEffect.d.ts +0 -1
- package/lib/table/src/store/index.d.ts +0 -1
- package/lib/upload-file/src/upload-file.d.ts +4 -0
- package/lib/upload-img/src/upload-img.d.ts +4 -0
- package/package.json +1 -1
package/lib/style/index.css
CHANGED
|
@@ -31347,6 +31347,10 @@ body {
|
|
|
31347
31347
|
display: flex;
|
|
31348
31348
|
flex-direction: row;
|
|
31349
31349
|
}
|
|
31350
|
+
.qm-pivot-grid__layout .header .table-cell,
|
|
31351
|
+
.qm-pivot-grid__layout .footer .table-cell {
|
|
31352
|
+
border-bottom: 1px solid #e8e8e8;
|
|
31353
|
+
}
|
|
31350
31354
|
.qm-pivot-grid__layout .header .fixed-left,
|
|
31351
31355
|
.qm-pivot-grid__layout .footer .fixed-left {
|
|
31352
31356
|
position: sticky;
|
|
@@ -31354,7 +31358,6 @@ body {
|
|
|
31354
31358
|
z-index: 1;
|
|
31355
31359
|
display: flex;
|
|
31356
31360
|
border-left: 1px solid #e8e8e8;
|
|
31357
|
-
border-bottom: 1px solid #e8e8e8;
|
|
31358
31361
|
box-shadow: -5px 0px 0 0px #f5f5f5;
|
|
31359
31362
|
}
|
|
31360
31363
|
.qm-pivot-grid__layout .header .fixed-left,
|
|
@@ -31368,7 +31371,6 @@ body {
|
|
|
31368
31371
|
.qm-pivot-grid__layout .footer .no-fixed {
|
|
31369
31372
|
flex: 1 0;
|
|
31370
31373
|
display: flex;
|
|
31371
|
-
border-bottom: 1px solid #e8e8e8;
|
|
31372
31374
|
box-shadow: 5px 0px 0 0px #f5f5f5;
|
|
31373
31375
|
}
|
|
31374
31376
|
.qm-pivot-grid__layout .header .no-fixed,
|
|
@@ -31625,8 +31627,10 @@ body {
|
|
|
31625
31627
|
}
|
|
31626
31628
|
.qm-pivot-grid__layout .content-empty {
|
|
31627
31629
|
position: absolute;
|
|
31628
|
-
|
|
31629
|
-
|
|
31630
|
+
inset: 0;
|
|
31631
|
+
display: inline-flex;
|
|
31632
|
+
flex-direction: column;
|
|
31633
|
+
justify-content: center;
|
|
31630
31634
|
}
|
|
31631
31635
|
.qm-pivot-grid__layout .left-panel {
|
|
31632
31636
|
position: sticky;
|
|
@@ -31659,6 +31663,7 @@ body {
|
|
|
31659
31663
|
}
|
|
31660
31664
|
.qm-pivot-grid__layout .left-panel .row-item.is-leaf .cell--indent {
|
|
31661
31665
|
display: flex;
|
|
31666
|
+
height: inherit;
|
|
31662
31667
|
background-color: #fff;
|
|
31663
31668
|
}
|
|
31664
31669
|
.qm-pivot-grid__layout .left-panel .row-item.is-leaf .cell--indent .line {
|
|
@@ -31708,11 +31713,6 @@ body {
|
|
|
31708
31713
|
.qm-pivot-grid__layout .container.no-group .row-item:last-child .table-cell {
|
|
31709
31714
|
border-bottom: 1px solid #e8e8e8;
|
|
31710
31715
|
}
|
|
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
|
-
}
|
|
31716
31716
|
.qm-pivot-grid__layout .container .group-label {
|
|
31717
31717
|
position: absolute;
|
|
31718
31718
|
box-sizing: content-box;
|
|
@@ -31818,19 +31818,16 @@ body {
|
|
|
31818
31818
|
color: rgba(0, 0, 0, 0.25);
|
|
31819
31819
|
cursor: not-allowed;
|
|
31820
31820
|
}
|
|
31821
|
-
.qm-pivot-grid__layout.small .label-
|
|
31822
|
-
.qm-pivot-grid__layout.small .table-cell
|
|
31823
|
-
.qm-pivot-grid__layout.small .cell--indent {
|
|
31821
|
+
.qm-pivot-grid__layout.small .label-cell,
|
|
31822
|
+
.qm-pivot-grid__layout.small .table-cell {
|
|
31824
31823
|
height: 26px;
|
|
31825
31824
|
}
|
|
31826
|
-
.qm-pivot-grid__layout.middle .label-
|
|
31827
|
-
.qm-pivot-grid__layout.middle .table-cell
|
|
31828
|
-
.qm-pivot-grid__layout.middle .cell--indent {
|
|
31825
|
+
.qm-pivot-grid__layout.middle .label-cell,
|
|
31826
|
+
.qm-pivot-grid__layout.middle .table-cell {
|
|
31829
31827
|
height: 34px;
|
|
31830
31828
|
}
|
|
31831
|
-
.qm-pivot-grid__layout.large .label-
|
|
31832
|
-
.qm-pivot-grid__layout.large .table-cell
|
|
31833
|
-
.qm-pivot-grid__layout.large .cell--indent {
|
|
31829
|
+
.qm-pivot-grid__layout.large .label-cell,
|
|
31830
|
+
.qm-pivot-grid__layout.large .table-cell {
|
|
31834
31831
|
height: 42px;
|
|
31835
31832
|
}
|
|
31836
31833
|
/*
|