bhd-components 0.9.18 → 0.9.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/dist/index.esm.es5.development.css +100 -94
- package/dist/index.esm.es5.development.js +1 -1
- package/dist/index.esm.es5.production.css +1 -1
- package/dist/index.esm.es5.production.js +1 -1
- package/dist/vendor.esm.es5.development.js +1 -1
- package/dist/vendor.esm.es5.production.js +1 -1
- package/es2017/table/index.module.less +22 -14
- package/esm/table/index.module.less +22 -14
- package/package.json +1 -1
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
width: 100%;
|
|
4
4
|
// color:@customColor;
|
|
5
5
|
:global {
|
|
6
|
+
.bhd-table-container {
|
|
7
|
+
& > .bhd-table-body {
|
|
8
|
+
overflow-y: auto !important;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
table {
|
|
7
12
|
th,
|
|
8
13
|
td {
|
|
@@ -152,8 +157,8 @@
|
|
|
152
157
|
.bhd-select .bhd-select-arrow {
|
|
153
158
|
margin-top: -5px;
|
|
154
159
|
color: rgba(0, 0, 0, 0.65);
|
|
155
|
-
|
|
156
|
-
pointer-events:none;
|
|
160
|
+
& > .anticon {
|
|
161
|
+
pointer-events: none;
|
|
157
162
|
}
|
|
158
163
|
}
|
|
159
164
|
}
|
|
@@ -163,7 +168,11 @@
|
|
|
163
168
|
.Table.SmallTable {
|
|
164
169
|
width: 100%;
|
|
165
170
|
:global {
|
|
166
|
-
|
|
171
|
+
.bhd-table-container {
|
|
172
|
+
& > .bhd-table-body {
|
|
173
|
+
overflow-y: auto !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
167
176
|
table {
|
|
168
177
|
th,
|
|
169
178
|
td {
|
|
@@ -173,7 +182,6 @@
|
|
|
173
182
|
}
|
|
174
183
|
& > .bhd-table-thead {
|
|
175
184
|
& > tr {
|
|
176
|
-
|
|
177
185
|
& > .bhd-table-cell {
|
|
178
186
|
font-weight: 600;
|
|
179
187
|
font-size: 16px;
|
|
@@ -262,29 +270,29 @@
|
|
|
262
270
|
// border-top-right-radius: 0;
|
|
263
271
|
// }
|
|
264
272
|
/* 去除head 圆角 */
|
|
265
|
-
.bhd-table-container table>thead>tr:first-child
|
|
266
|
-
border-top-left-radius:0;
|
|
273
|
+
.bhd-table-container table > thead > tr:first-child > *:first-child {
|
|
274
|
+
border-top-left-radius: 0;
|
|
267
275
|
}
|
|
268
|
-
.bhd-table-container table>thead>tr:first-child
|
|
276
|
+
.bhd-table-container table > thead > tr:first-child > *:last-child {
|
|
269
277
|
border-top-right-radius: 0;
|
|
270
278
|
}
|
|
271
|
-
table{
|
|
279
|
+
table {
|
|
272
280
|
border-radius: 0;
|
|
273
|
-
.bhd-table-header{
|
|
281
|
+
.bhd-table-header {
|
|
274
282
|
border-radius: 0;
|
|
275
283
|
}
|
|
276
284
|
}
|
|
277
|
-
.bhd-table-container{
|
|
285
|
+
.bhd-table-container {
|
|
278
286
|
border-top-left-radius: 0;
|
|
279
287
|
border-top-right-radius: 0;
|
|
280
288
|
}
|
|
281
|
-
.bhd-table{
|
|
289
|
+
.bhd-table {
|
|
282
290
|
border-radius: 0;
|
|
283
291
|
}
|
|
284
|
-
.bhd-table-wrapper .bhd-table .bhd-table-header{
|
|
292
|
+
.bhd-table-wrapper .bhd-table .bhd-table-header {
|
|
285
293
|
border-radius: 0;
|
|
286
294
|
}
|
|
287
|
-
|
|
295
|
+
|
|
288
296
|
/* 多选框间距问题 */
|
|
289
297
|
.bhd-table-wrapper {
|
|
290
298
|
.bhd-table-selection-col {
|
|
@@ -374,7 +382,7 @@
|
|
|
374
382
|
margin-top: -5px;
|
|
375
383
|
color: @color-icon-fill-Tr;
|
|
376
384
|
}
|
|
377
|
-
.bhd-select-open .bhd-select-arrow{
|
|
385
|
+
.bhd-select-open .bhd-select-arrow {
|
|
378
386
|
color: @color-icon;
|
|
379
387
|
}
|
|
380
388
|
}
|
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
width: 100%;
|
|
4
4
|
// color:@customColor;
|
|
5
5
|
:global {
|
|
6
|
+
.bhd-table-container {
|
|
7
|
+
& > .bhd-table-body {
|
|
8
|
+
overflow-y: auto !important;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
table {
|
|
7
12
|
th,
|
|
8
13
|
td {
|
|
@@ -152,8 +157,8 @@
|
|
|
152
157
|
.bhd-select .bhd-select-arrow {
|
|
153
158
|
margin-top: -5px;
|
|
154
159
|
color: rgba(0, 0, 0, 0.65);
|
|
155
|
-
|
|
156
|
-
pointer-events:none;
|
|
160
|
+
& > .anticon {
|
|
161
|
+
pointer-events: none;
|
|
157
162
|
}
|
|
158
163
|
}
|
|
159
164
|
}
|
|
@@ -163,7 +168,11 @@
|
|
|
163
168
|
.Table.SmallTable {
|
|
164
169
|
width: 100%;
|
|
165
170
|
:global {
|
|
166
|
-
|
|
171
|
+
.bhd-table-container {
|
|
172
|
+
& > .bhd-table-body {
|
|
173
|
+
overflow-y: auto !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
167
176
|
table {
|
|
168
177
|
th,
|
|
169
178
|
td {
|
|
@@ -173,7 +182,6 @@
|
|
|
173
182
|
}
|
|
174
183
|
& > .bhd-table-thead {
|
|
175
184
|
& > tr {
|
|
176
|
-
|
|
177
185
|
& > .bhd-table-cell {
|
|
178
186
|
font-weight: 600;
|
|
179
187
|
font-size: 16px;
|
|
@@ -262,29 +270,29 @@
|
|
|
262
270
|
// border-top-right-radius: 0;
|
|
263
271
|
// }
|
|
264
272
|
/* 去除head 圆角 */
|
|
265
|
-
.bhd-table-container table>thead>tr:first-child
|
|
266
|
-
border-top-left-radius:0;
|
|
273
|
+
.bhd-table-container table > thead > tr:first-child > *:first-child {
|
|
274
|
+
border-top-left-radius: 0;
|
|
267
275
|
}
|
|
268
|
-
.bhd-table-container table>thead>tr:first-child
|
|
276
|
+
.bhd-table-container table > thead > tr:first-child > *:last-child {
|
|
269
277
|
border-top-right-radius: 0;
|
|
270
278
|
}
|
|
271
|
-
table{
|
|
279
|
+
table {
|
|
272
280
|
border-radius: 0;
|
|
273
|
-
.bhd-table-header{
|
|
281
|
+
.bhd-table-header {
|
|
274
282
|
border-radius: 0;
|
|
275
283
|
}
|
|
276
284
|
}
|
|
277
|
-
.bhd-table-container{
|
|
285
|
+
.bhd-table-container {
|
|
278
286
|
border-top-left-radius: 0;
|
|
279
287
|
border-top-right-radius: 0;
|
|
280
288
|
}
|
|
281
|
-
.bhd-table{
|
|
289
|
+
.bhd-table {
|
|
282
290
|
border-radius: 0;
|
|
283
291
|
}
|
|
284
|
-
.bhd-table-wrapper .bhd-table .bhd-table-header{
|
|
292
|
+
.bhd-table-wrapper .bhd-table .bhd-table-header {
|
|
285
293
|
border-radius: 0;
|
|
286
294
|
}
|
|
287
|
-
|
|
295
|
+
|
|
288
296
|
/* 多选框间距问题 */
|
|
289
297
|
.bhd-table-wrapper {
|
|
290
298
|
.bhd-table-selection-col {
|
|
@@ -374,7 +382,7 @@
|
|
|
374
382
|
margin-top: -5px;
|
|
375
383
|
color: @color-icon-fill-Tr;
|
|
376
384
|
}
|
|
377
|
-
.bhd-select-open .bhd-select-arrow{
|
|
385
|
+
.bhd-select-open .bhd-select-arrow {
|
|
378
386
|
color: @color-icon;
|
|
379
387
|
}
|
|
380
388
|
}
|