cloud-business 0.1.104 → 0.1.105-1
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/cloud-business.css +142 -37
- package/cloud-business.js +2 -2
- package/cloud-business.min.css +1 -1
- package/cloud-business.min.js +1 -1
- package/package.json +1 -1
package/cloud-business.css
CHANGED
|
@@ -261,7 +261,7 @@ li {
|
|
|
261
261
|
@font-face {
|
|
262
262
|
font-family: 'cloud-react-icon-font';
|
|
263
263
|
/* Project id 2990746 */
|
|
264
|
-
src: url('
|
|
264
|
+
src: url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff2') format('woff2'), url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff') format('woff'), url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.ttf') format('truetype');
|
|
265
265
|
}
|
|
266
266
|
.newCloud-icon {
|
|
267
267
|
font-family: 'cloud-react-icon-font' !important;
|
|
@@ -5422,6 +5422,7 @@ input::-webkit-search-cancel-button {
|
|
|
5422
5422
|
direction: rtl;
|
|
5423
5423
|
}
|
|
5424
5424
|
.newCloud-table-container {
|
|
5425
|
+
position: relative;
|
|
5425
5426
|
height: 100%;
|
|
5426
5427
|
display: flex;
|
|
5427
5428
|
flex-direction: column;
|
|
@@ -5459,6 +5460,21 @@ input::-webkit-search-cancel-button {
|
|
|
5459
5460
|
border-right: 0;
|
|
5460
5461
|
border-left: 1px solid #e8e8e8;
|
|
5461
5462
|
}
|
|
5463
|
+
.newCloud-table td.padding-32 {
|
|
5464
|
+
padding-right: 32px;
|
|
5465
|
+
}
|
|
5466
|
+
.newCloud-table td.padding-34 {
|
|
5467
|
+
padding-right: 34px;
|
|
5468
|
+
}
|
|
5469
|
+
.newCloud-table td.padding-54 {
|
|
5470
|
+
padding-right: 54px;
|
|
5471
|
+
}
|
|
5472
|
+
.newCloud-table td.padding-52 {
|
|
5473
|
+
padding-right: 52px;
|
|
5474
|
+
}
|
|
5475
|
+
.newCloud-table td.padding-74 {
|
|
5476
|
+
padding-right: 74px;
|
|
5477
|
+
}
|
|
5462
5478
|
.newCloud-table tr:not(.newCloud-table-expanded-row):hover td {
|
|
5463
5479
|
background: #fafafa;
|
|
5464
5480
|
transition: all 0.3s;
|
|
@@ -5664,6 +5680,10 @@ input::-webkit-search-cancel-button {
|
|
|
5664
5680
|
}
|
|
5665
5681
|
.newCloud-table .newCloud-table-config-column {
|
|
5666
5682
|
min-width: auto;
|
|
5683
|
+
padding-right: 0;
|
|
5684
|
+
}
|
|
5685
|
+
.newCloud-table td.newCloud-table-config-column::after {
|
|
5686
|
+
display: none;
|
|
5667
5687
|
}
|
|
5668
5688
|
.newCloud-table .newCloud-table-checkbox-column {
|
|
5669
5689
|
min-width: auto;
|
|
@@ -5740,17 +5760,32 @@ input::-webkit-search-cancel-button {
|
|
|
5740
5760
|
.newCloud-table-summary tr td {
|
|
5741
5761
|
background: #fafafa;
|
|
5742
5762
|
}
|
|
5763
|
+
.newCloud-table .title-container {
|
|
5764
|
+
display: flex;
|
|
5765
|
+
align-items: center;
|
|
5766
|
+
gap: 6px;
|
|
5767
|
+
}
|
|
5768
|
+
.newCloud-table .title-container.align-right {
|
|
5769
|
+
justify-content: end;
|
|
5770
|
+
}
|
|
5743
5771
|
.newCloud-table .title-container .sort-icon-container {
|
|
5772
|
+
position: relative;
|
|
5773
|
+
top: -4px;
|
|
5744
5774
|
display: inline-flex;
|
|
5745
5775
|
flex-direction: column;
|
|
5746
5776
|
align-items: center;
|
|
5747
5777
|
cursor: pointer;
|
|
5748
5778
|
}
|
|
5749
|
-
.newCloud-table .title-container .sort-icon-container
|
|
5779
|
+
.newCloud-table .title-container .sort-icon-container .sort-up-icon {
|
|
5780
|
+
height: 7px;
|
|
5781
|
+
}
|
|
5782
|
+
.newCloud-table .title-container .sort-icon-container .sort-down-icon {
|
|
5783
|
+
height: 7px;
|
|
5784
|
+
}
|
|
5785
|
+
.newCloud-table .title-container .sort-icon-container:hover:after {
|
|
5750
5786
|
position: absolute;
|
|
5751
|
-
top:
|
|
5752
|
-
|
|
5753
|
-
right: 11px;
|
|
5787
|
+
top: 4px;
|
|
5788
|
+
left: -1px;
|
|
5754
5789
|
content: '';
|
|
5755
5790
|
display: inline-block;
|
|
5756
5791
|
width: 16px;
|
|
@@ -5758,10 +5793,6 @@ input::-webkit-search-cancel-button {
|
|
|
5758
5793
|
background: #e8e8e8;
|
|
5759
5794
|
z-index: 0;
|
|
5760
5795
|
}
|
|
5761
|
-
.newCloud-table .title-container .sort-icon-container.cell-align-right .sort-up-icon,
|
|
5762
|
-
.newCloud-table .title-container .sort-icon-container.cell-align-right .sort-down-icon {
|
|
5763
|
-
right: 0;
|
|
5764
|
-
}
|
|
5765
5796
|
.newCloud-table .title-container .sort-icon-container.sort-asc .sort-up-icon {
|
|
5766
5797
|
color: var(--shuyunBlue4);
|
|
5767
5798
|
}
|
|
@@ -5770,31 +5801,14 @@ input::-webkit-search-cancel-button {
|
|
|
5770
5801
|
}
|
|
5771
5802
|
.newCloud-table .title-container .sort-icon-container .sort-up-icon,
|
|
5772
5803
|
.newCloud-table .title-container .sort-icon-container .sort-down-icon {
|
|
5773
|
-
position: absolute;
|
|
5774
|
-
right: 12px;
|
|
5775
5804
|
font-size: 14px;
|
|
5776
5805
|
color: #949494;
|
|
5777
5806
|
display: inline-block;
|
|
5778
5807
|
transform: scale(0.9);
|
|
5779
5808
|
z-index: 1;
|
|
5780
5809
|
}
|
|
5781
|
-
.newCloud-table .title-container .sort-icon-container .sort-up-icon {
|
|
5782
|
-
top: calc(50% - 13px);
|
|
5783
|
-
}
|
|
5784
|
-
.newCloud-table .title-container .sort-icon-container .sort-down-icon {
|
|
5785
|
-
top: calc(50% - 6px);
|
|
5786
|
-
}
|
|
5787
|
-
.newCloud-table .title-container.filter-container .sort-icon-container:hover:not(.cell-align-right):after {
|
|
5788
|
-
right: 35px;
|
|
5789
|
-
}
|
|
5790
|
-
.newCloud-table .title-container.filter-container .sort-icon-container .sort-up-icon,
|
|
5791
|
-
.newCloud-table .title-container.filter-container .sort-icon-container .sort-down-icon {
|
|
5792
|
-
right: 36px;
|
|
5793
|
-
}
|
|
5794
5810
|
.newCloud-table .title-container .filter-icon {
|
|
5795
|
-
|
|
5796
|
-
right: 14px;
|
|
5797
|
-
top: 13px;
|
|
5811
|
+
height: 17px;
|
|
5798
5812
|
cursor: pointer;
|
|
5799
5813
|
color: rgba(0, 0, 0, 0.45);
|
|
5800
5814
|
}
|
|
@@ -5809,11 +5823,15 @@ input::-webkit-search-cancel-button {
|
|
|
5809
5823
|
align-items: center;
|
|
5810
5824
|
}
|
|
5811
5825
|
.newCloud-table .title-with-tip .title-tip-icon {
|
|
5812
|
-
|
|
5826
|
+
height: 17px;
|
|
5813
5827
|
color: rgba(0, 0, 0, 0.25);
|
|
5814
5828
|
}
|
|
5829
|
+
.newCloud-table .title-with-tip.title-with-tip-right {
|
|
5830
|
+
gap: 4px;
|
|
5831
|
+
}
|
|
5815
5832
|
.newCloud-table .title-with-tip.title-with-tip-left {
|
|
5816
5833
|
flex-direction: row-reverse;
|
|
5834
|
+
gap: 4px;
|
|
5817
5835
|
}
|
|
5818
5836
|
.newCloud-table-sticky-holder {
|
|
5819
5837
|
position: sticky;
|
|
@@ -6087,6 +6105,10 @@ input::-webkit-search-cancel-button {
|
|
|
6087
6105
|
.newCloud-table-box.newCloud-table-full-column .newCloud-table-expend-icon {
|
|
6088
6106
|
display: none;
|
|
6089
6107
|
}
|
|
6108
|
+
.newCloud-table-box.newCloud-table-config-column tbody tr td:last-child,
|
|
6109
|
+
.newCloud-table-box.newCloud-table-config-column thead tr th:nth-last-of-type(-n+1) {
|
|
6110
|
+
padding-right: 40px;
|
|
6111
|
+
}
|
|
6090
6112
|
.newCloud-table-box.newCloud-table-loading {
|
|
6091
6113
|
position: relative;
|
|
6092
6114
|
}
|
|
@@ -6102,6 +6124,9 @@ input::-webkit-search-cancel-button {
|
|
|
6102
6124
|
opacity: 0.9;
|
|
6103
6125
|
z-index: 3;
|
|
6104
6126
|
}
|
|
6127
|
+
.newCloud-table-box.newCloud-table-use-custom-scroll .newCloud-table-header colgroup col:not(:last-child) {
|
|
6128
|
+
display: table-column !important;
|
|
6129
|
+
}
|
|
6105
6130
|
.newCloud-table-box.newCloud-table-use-custom-scroll.newCloud-table-bordered.newCloud-table-support-resize .newCloud-table-resizeable:hover {
|
|
6106
6131
|
background: var(--shuyunBlue1);
|
|
6107
6132
|
z-index: 1;
|
|
@@ -6141,20 +6166,66 @@ input::-webkit-search-cancel-button {
|
|
|
6141
6166
|
.newCloud-table-box.newCloud-table-use-custom-scroll.newCloud-table-support-resize .newCloud-table-resizeable:nth-last-of-type(2) .react-resizable-handle-se {
|
|
6142
6167
|
display: none;
|
|
6143
6168
|
}
|
|
6169
|
+
.newCloud-table-box.newCloud-table-no-scroll .newCloud-table-container {
|
|
6170
|
+
height: auto;
|
|
6171
|
+
}
|
|
6172
|
+
.newCloud-table-box.newCloud-table-no-scroll.newCloud-table-empty .newCloud-table-placeholder {
|
|
6173
|
+
visibility: hidden;
|
|
6174
|
+
}
|
|
6175
|
+
.newCloud-table-no-scroll-empty {
|
|
6176
|
+
position: absolute;
|
|
6177
|
+
top: calc(50% + 20px);
|
|
6178
|
+
left: 50%;
|
|
6179
|
+
transform: translate(-50%, -50%);
|
|
6180
|
+
display: flex;
|
|
6181
|
+
flex-direction: column;
|
|
6182
|
+
justify-content: center;
|
|
6183
|
+
align-items: center;
|
|
6184
|
+
color: rgba(0, 0, 0, 0.45);
|
|
6185
|
+
}
|
|
6144
6186
|
.newCloud-table-tooltip {
|
|
6145
|
-
|
|
6187
|
+
min-width: 236px;
|
|
6188
|
+
overflow: auto;
|
|
6189
|
+
padding: 16px;
|
|
6190
|
+
box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1), 0 0 1px 0 rgba(0, 0, 0, 0.3) !important;
|
|
6191
|
+
border-radius: 3px;
|
|
6146
6192
|
}
|
|
6147
6193
|
.newCloud-table-tooltip-content {
|
|
6148
6194
|
display: flex;
|
|
6149
|
-
flex-
|
|
6195
|
+
flex-direction: column;
|
|
6196
|
+
gap: 12px;
|
|
6150
6197
|
}
|
|
6151
6198
|
.newCloud-table-tooltip-content > li {
|
|
6152
|
-
width:
|
|
6153
|
-
padding: 4px 10px;
|
|
6199
|
+
width: 180px;
|
|
6154
6200
|
white-space: nowrap;
|
|
6155
6201
|
overflow: hidden;
|
|
6156
6202
|
text-overflow: ellipsis;
|
|
6157
6203
|
}
|
|
6204
|
+
.newCloud-table-tooltip-content > li .newCloud-checkbox-text {
|
|
6205
|
+
font-size: 14px;
|
|
6206
|
+
}
|
|
6207
|
+
.newCloud-table-tooltip-content .config-title {
|
|
6208
|
+
color: #666666;
|
|
6209
|
+
}
|
|
6210
|
+
.newCloud-table-tooltip::after {
|
|
6211
|
+
display: none;
|
|
6212
|
+
}
|
|
6213
|
+
.newCloud-table-config-icon {
|
|
6214
|
+
position: absolute;
|
|
6215
|
+
right: 0;
|
|
6216
|
+
z-index: 1;
|
|
6217
|
+
top: 2px;
|
|
6218
|
+
width: 40px;
|
|
6219
|
+
height: 40px;
|
|
6220
|
+
line-height: 40px;
|
|
6221
|
+
cursor: pointer;
|
|
6222
|
+
text-align: center;
|
|
6223
|
+
color: rgba(0, 0, 0, 0.45);
|
|
6224
|
+
background: #fafafa;
|
|
6225
|
+
}
|
|
6226
|
+
.newCloud-table-config-icon:hover {
|
|
6227
|
+
color: var(--shuyunBlue4);
|
|
6228
|
+
}
|
|
6158
6229
|
.newCloud-table-drag-line {
|
|
6159
6230
|
border: 1px solid var(--shuyunBlue4) !important;
|
|
6160
6231
|
}
|
|
@@ -7039,11 +7110,10 @@ input::-webkit-search-cancel-button {
|
|
|
7039
7110
|
position: fixed;
|
|
7040
7111
|
background: white;
|
|
7041
7112
|
transition: top 500ms, right 500ms, bottom 500ms, left 500ms;
|
|
7042
|
-
z-index:
|
|
7113
|
+
z-index: 1010;
|
|
7043
7114
|
}
|
|
7044
7115
|
.newCloud-drawer1.show {
|
|
7045
7116
|
box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
|
|
7046
|
-
z-index: 1010;
|
|
7047
7117
|
}
|
|
7048
7118
|
.newCloud-drawer1.top {
|
|
7049
7119
|
top: 0;
|
|
@@ -11094,6 +11164,16 @@ body {
|
|
|
11094
11164
|
width: 10px;
|
|
11095
11165
|
}
|
|
11096
11166
|
|
|
11167
|
+
body {
|
|
11168
|
+
margin: 0;
|
|
11169
|
+
--shuyunBlue1: #EDF6FF;
|
|
11170
|
+
--shuyunBlue2: #CCE6FF;
|
|
11171
|
+
--shuyunBlue3: #72B0ED;
|
|
11172
|
+
--shuyunBlue4: #0066CC;
|
|
11173
|
+
--shuyunBlue5: #004CA3;
|
|
11174
|
+
--shuyunBlue6: #003775;
|
|
11175
|
+
--shuyunBlue7: #002147;
|
|
11176
|
+
}
|
|
11097
11177
|
.goods-selector-pro-form {
|
|
11098
11178
|
display: flex;
|
|
11099
11179
|
flex-flow: row wrap;
|
|
@@ -11224,13 +11304,27 @@ body {
|
|
|
11224
11304
|
display: inline-block;
|
|
11225
11305
|
margin-left: 10px;
|
|
11226
11306
|
text-align: center;
|
|
11227
|
-
color: #
|
|
11228
|
-
border: 1px solid #
|
|
11307
|
+
color: #0083ba;
|
|
11308
|
+
border: 1px solid #0083ba;
|
|
11229
11309
|
border-radius: 50%;
|
|
11230
11310
|
cursor: pointer;
|
|
11231
11311
|
line-height: 10px;
|
|
11232
11312
|
font-size: 12px !important;
|
|
11233
11313
|
}
|
|
11314
|
+
.add-condition .common-disabled-btn {
|
|
11315
|
+
width: 12px;
|
|
11316
|
+
height: 12px;
|
|
11317
|
+
display: inline-block;
|
|
11318
|
+
margin-left: 10px;
|
|
11319
|
+
text-align: center;
|
|
11320
|
+
color: #ddd !important;
|
|
11321
|
+
border: 1px solid #ddd !important;
|
|
11322
|
+
border-radius: 50%;
|
|
11323
|
+
line-height: 10px;
|
|
11324
|
+
font-size: 12px !important;
|
|
11325
|
+
pointer-events: none;
|
|
11326
|
+
cursor: not-allowed;
|
|
11327
|
+
}
|
|
11234
11328
|
|
|
11235
11329
|
.goods-failure-tip {
|
|
11236
11330
|
width: 154px;
|
|
@@ -18251,7 +18345,7 @@ body {
|
|
|
18251
18345
|
overflow: visible;
|
|
18252
18346
|
}
|
|
18253
18347
|
.add-goods-btn {
|
|
18254
|
-
width:
|
|
18348
|
+
width: 410px;
|
|
18255
18349
|
height: 32px;
|
|
18256
18350
|
display: inline-block;
|
|
18257
18351
|
line-height: 32px;
|
|
@@ -18330,6 +18424,9 @@ body {
|
|
|
18330
18424
|
.newCloud-goods-selector-pro-table-container .newCloud-table td {
|
|
18331
18425
|
white-space: normal !important;
|
|
18332
18426
|
}
|
|
18427
|
+
.newCloud-goods-selector-pro-table-container .newCloud-table thead tr th:first-child .newCloud-checkbox-wrapper {
|
|
18428
|
+
display: none !important;
|
|
18429
|
+
}
|
|
18333
18430
|
.newCloud-goods-selector-pro-table-container .newCloud-table-two-level-tree .newCloud-table-row-level-1 td.newCloud-table-row-expand-column + td {
|
|
18334
18431
|
padding-left: 14px !important;
|
|
18335
18432
|
}
|
|
@@ -18392,6 +18489,14 @@ body {
|
|
|
18392
18489
|
.newCloud-goods-selector-pro-table-container .table-link .goods-sku-title {
|
|
18393
18490
|
color: #666;
|
|
18394
18491
|
}
|
|
18492
|
+
.newCloud-goods-selector-pro-table-container .text-overflow {
|
|
18493
|
+
display: inline-block;
|
|
18494
|
+
width: 140px;
|
|
18495
|
+
overflow: hidden;
|
|
18496
|
+
white-space: nowrap;
|
|
18497
|
+
text-overflow: ellipsis;
|
|
18498
|
+
cursor: default;
|
|
18499
|
+
}
|
|
18395
18500
|
.newCloud-table td .newCloud-checkbox-disabled .newCloud-checkbox-inner {
|
|
18396
18501
|
border-color: #d9d9d9 !important;
|
|
18397
18502
|
}
|