bkui-vue 0.0.3-beta.2-7 → 0.0.3-beta.2-9
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.cjs.js +28 -28
- package/dist/index.esm.js +6432 -6413
- package/dist/index.umd.js +28 -28
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/table/index.js +265 -208
- package/lib/table/plugins/use-draggable.d.ts +2 -2
- package/lib/table/table.css +3 -11
- package/lib/table/table.less +12 -9
- package/lib/table/table.variable.css +3 -11
- package/lib/table/use-attributes.d.ts +1 -1
- package/lib/table/utils.d.ts +1 -0
- package/package.json +1 -1
package/lib/table/table.less
CHANGED
@@ -313,18 +313,21 @@
|
|
313
313
|
}
|
314
314
|
}
|
315
315
|
|
316
|
-
&.--drag-enter {
|
317
|
-
|
318
|
-
|
319
|
-
|
316
|
+
// &.--drag-enter {
|
317
|
+
// &.--bottom {
|
318
|
+
// border-bottom: solid 1px #3785ff;
|
319
|
+
// }
|
320
320
|
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
}
|
321
|
+
// &.--top {
|
322
|
+
// border-top: solid 1px #3785ff;
|
323
|
+
// }
|
324
|
+
// }
|
325
325
|
|
326
326
|
&.--drag-start {
|
327
|
-
|
327
|
+
|
328
|
+
td {
|
329
|
+
background: #fff!important;
|
330
|
+
}
|
328
331
|
}
|
329
332
|
}
|
330
333
|
}
|
@@ -1411,17 +1411,9 @@
|
|
1411
1411
|
.bk-table .bk-table-body table tbody tr:hover.hover-highlight td:not(.empty-cell) {
|
1412
1412
|
background: #f5f7fa;
|
1413
1413
|
}
|
1414
|
-
.bk-table .bk-table-head table tbody tr.--drag-
|
1415
|
-
.bk-table .bk-table-body table tbody tr.--drag-
|
1416
|
-
|
1417
|
-
}
|
1418
|
-
.bk-table .bk-table-head table tbody tr.--drag-enter.--top,
|
1419
|
-
.bk-table .bk-table-body table tbody tr.--drag-enter.--top {
|
1420
|
-
border-top: solid 1px #3785ff;
|
1421
|
-
}
|
1422
|
-
.bk-table .bk-table-head table tbody tr.--drag-start,
|
1423
|
-
.bk-table .bk-table-body table tbody tr.--drag-start {
|
1424
|
-
background: #fff;
|
1414
|
+
.bk-table .bk-table-head table tbody tr.--drag-start td,
|
1415
|
+
.bk-table .bk-table-body table tbody tr.--drag-start td {
|
1416
|
+
background: #fff !important;
|
1425
1417
|
}
|
1426
1418
|
.bk-table .bk-table-head {
|
1427
1419
|
position: relative;
|
@@ -84,7 +84,7 @@ declare const _default: (props: TablePropTypes) => {
|
|
84
84
|
clearSelection: () => void;
|
85
85
|
clearColumnSort: (reset?: boolean) => void;
|
86
86
|
toggleRowSelection: (row: any) => void;
|
87
|
-
getRowAttribute: (
|
87
|
+
getRowAttribute: (item: any | IEmptyObject, attrName: string) => any;
|
88
88
|
filter: () => void;
|
89
89
|
sortData: (column: Column) => void;
|
90
90
|
isCheckedAll: () => boolean;
|
package/lib/table/utils.d.ts
CHANGED