bkui-vue 2.0.1-beta.11 → 2.0.1-beta.12

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.
@@ -18452,7 +18452,7 @@ function _toConsumableArray(arr) {
18452
18452
  var start = fixedPos === 'right' ? length * opt : 1;
18453
18453
  var preOffset = 0;
18454
18454
  for (start;;) {
18455
- start = start + -1 * opt;
18455
+ start = start - opt;
18456
18456
  var index = Math.abs(start);
18457
18457
  var current = filterColumns[index];
18458
18458
  var curFixedPos = resolveFixColPos(current);
@@ -18479,7 +18479,7 @@ function _toConsumableArray(arr) {
18479
18479
  }
18480
18480
  var fixedOffset = {
18481
18481
  left: 0,
18482
- right: -1
18482
+ right: 1
18483
18483
  };
18484
18484
  var fixedPos = resolveFixColPos(column);
18485
18485
  fixedOffset[fixedPos] = getPreColumnOffset(fixedPos, column, fixedOffset[fixedPos]);
@@ -1256,6 +1256,7 @@
1256
1256
  .bk-table .bk-table-head table .left .cell,
1257
1257
  .bk-table .bk-table-body table .left .cell {
1258
1258
  justify-content: start;
1259
+ text-align: left;
1259
1260
  }
1260
1261
  .bk-table .bk-table-head table .center,
1261
1262
  .bk-table .bk-table-body table .center {
@@ -1264,6 +1265,7 @@
1264
1265
  .bk-table .bk-table-head table .center .cell,
1265
1266
  .bk-table .bk-table-body table .center .cell {
1266
1267
  justify-content: center;
1268
+ text-align: center;
1267
1269
  }
1268
1270
  .bk-table .bk-table-head table .right,
1269
1271
  .bk-table .bk-table-body table .right {
@@ -1272,6 +1274,7 @@
1272
1274
  .bk-table .bk-table-head table .right .cell,
1273
1275
  .bk-table .bk-table-body table .right .cell {
1274
1276
  justify-content: end;
1277
+ text-align: right;
1275
1278
  }
1276
1279
  .bk-table .bk-table-head table thead,
1277
1280
  .bk-table .bk-table-body table thead {
@@ -1332,7 +1335,6 @@
1332
1335
  width: 100%;
1333
1336
  line-height: calc(var(--row-height) - 2px);
1334
1337
  box-sizing: border-box;
1335
- align-items: center;
1336
1338
  }
1337
1339
  .bk-table .bk-table-head table tbody tr td .cell.drag,
1338
1340
  .bk-table .bk-table-body table tbody tr td .cell.drag {
@@ -1403,9 +1405,6 @@
1403
1405
  .bk-table.bordered-row .bk-table-body tbody tr td {
1404
1406
  border-bottom-color: #dcdee5;
1405
1407
  }
1406
- .bk-table.bordered-row .bk-table-body tbody tr:last-child td {
1407
- border-bottom: none;
1408
- }
1409
1408
  .bk-table.bordered-outer {
1410
1409
  border-top: 1px solid #dcdee5;
1411
1410
  border-right: 1px solid #dcdee5;
@@ -191,6 +191,7 @@
191
191
 
192
192
  .cell {
193
193
  justify-content: start;
194
+ text-align: left;
194
195
  }
195
196
  }
196
197
 
@@ -199,6 +200,7 @@
199
200
 
200
201
  .cell {
201
202
  justify-content: center;
203
+ text-align: center;
202
204
  }
203
205
  }
204
206
 
@@ -207,6 +209,7 @@
207
209
 
208
210
  .cell {
209
211
  justify-content: end;
212
+ text-align: right;
210
213
  }
211
214
  }
212
215
 
@@ -266,17 +269,11 @@
266
269
  padding-bottom: 30px;
267
270
  }
268
271
 
269
- &.is-last {
270
- // border-bottom: none;
271
- }
272
-
273
272
  .cell {
274
273
  display: block;
275
274
  width: 100%;
276
- // height: 100%;
277
275
  line-height: calc(var(--row-height) - 2px);
278
276
  box-sizing: border-box;
279
- align-items: center;
280
277
 
281
278
  &.drag {
282
279
  text-align: center;
@@ -374,12 +371,6 @@
374
371
  td {
375
372
  border-bottom-color: @table-border-color;
376
373
  }
377
-
378
- &:last-child {
379
- td {
380
- border-bottom: none;
381
- }
382
- }
383
374
  }
384
375
  }
385
376
  }
@@ -478,6 +469,7 @@
478
469
  top: 0;
479
470
  right: 0;
480
471
 
472
+
481
473
  &.shadow {
482
474
  box-shadow: 0 0 10px rgb(0 0 0 / 12%);
483
475
  }
@@ -1385,6 +1385,7 @@
1385
1385
  .bk-table .bk-table-head table .left .cell,
1386
1386
  .bk-table .bk-table-body table .left .cell {
1387
1387
  justify-content: start;
1388
+ text-align: left;
1388
1389
  }
1389
1390
  .bk-table .bk-table-head table .center,
1390
1391
  .bk-table .bk-table-body table .center {
@@ -1393,6 +1394,7 @@
1393
1394
  .bk-table .bk-table-head table .center .cell,
1394
1395
  .bk-table .bk-table-body table .center .cell {
1395
1396
  justify-content: center;
1397
+ text-align: center;
1396
1398
  }
1397
1399
  .bk-table .bk-table-head table .right,
1398
1400
  .bk-table .bk-table-body table .right {
@@ -1401,6 +1403,7 @@
1401
1403
  .bk-table .bk-table-head table .right .cell,
1402
1404
  .bk-table .bk-table-body table .right .cell {
1403
1405
  justify-content: end;
1406
+ text-align: right;
1404
1407
  }
1405
1408
  .bk-table .bk-table-head table thead,
1406
1409
  .bk-table .bk-table-body table thead {
@@ -1461,7 +1464,6 @@
1461
1464
  width: 100%;
1462
1465
  line-height: calc(var(--row-height) - 2px);
1463
1466
  box-sizing: border-box;
1464
- align-items: center;
1465
1467
  }
1466
1468
  .bk-table .bk-table-head table tbody tr td .cell.drag,
1467
1469
  .bk-table .bk-table-body table tbody tr td .cell.drag {
@@ -1532,9 +1534,6 @@
1532
1534
  .bk-table.bordered-row .bk-table-body tbody tr td {
1533
1535
  border-bottom-color: #dcdee5;
1534
1536
  }
1535
- .bk-table.bordered-row .bk-table-body tbody tr:last-child td {
1536
- border-bottom: none;
1537
- }
1538
1537
  .bk-table.bordered-outer {
1539
1538
  border-top: 1px solid #dcdee5;
1540
1539
  border-right: 1px solid #dcdee5;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.11",
3
+ "version": "2.0.1-beta.12",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",